@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@200;300;400;500;600;700;800&display=swap');

*{
    box-sizing: border-box;
    padding:0;
    margin:0;
    text-transform: lowercase;
    text-align: center;
}

body{
    background-color: #02162c;
    color: rgb(207, 207, 207);
    font-family: Dosis, sans-serif;
}

a{
    color: white;
    text-decoration: none;
}

a:hover{
    color: yellow;
    text-decoration-line: underline ;
    text-decoration-color: yellow;
}

