@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #2d2f34;
    font-family: "Poppins";
}

li, a, button{
    font-size: 18px;
    color: #fff;
    text-decoration: none;
}

header{
    display: flex;
    /* justify-content: space-between; */
    justify-content: flex-end;
    align-items: center;
    padding: 20px 15px;
    background-color: #202022;
}

.logotipo{
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    margin-right: auto; /*deixa a margem automatica lado DIR empurrando o maximo para lado ESQ */
}

.nav-links{
    list-style: none;
}

.nav-links li{
    display: inline-block;
    padding: 0px 20px;
}

.nav-links li a:hover{
    color: #6090d7;
}

button{
    padding: 10px 20px;
    background-color: #4771b0;
    border: none;
    border-radius: 60px;
    cursor: pointer;
    margin-left: 15px;
}

button:hover{
    background-color: #39619c;
}

@media (max-width: 800px){
    li, a, button{
        font-size: 12px;
    }

    .logotipo{
        font-size: 22px;
        font-weight: bold;
    }

    button{
        margin-left: 0px;
    }

    header{
        display: flex;
        /* justify-content: space-between; */
        justify-content: flex-end;
        align-items: center;
        padding: 10px 8px;
        background-color: #202022;
    }
}

@media (max-width: 721px) and (min-width: 300px){
    li, a, button{
        font-size: 7px;
    }

    .logotipo{
        font-size: 9px;
        font-weight: bold;
    }

    button{
        margin-left: 0px;
    }

    header{
        display: flex;
        /* justify-content: space-between; */
        justify-content: flex-end;
        align-items: center;
        padding: 5px 4px;
        background-color: #202022;
    }
}



