@import url('https://fonts.googleapis.com/css2?family=Average+Sans&family=Ga+Maamli&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&family=Rubik+Vinyl&family=Sour+Gummy:ital,wght@0,100..900;1,100..900&display=swap');

*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body{
    background-image: url(./imagens/cod.jpg);
    background-size: contain;
    color: white;
    font-family: "Sour Gummy", serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
    font-variation-settings:
      "wdth" 100;
}
header{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 2rem;
}

header img{
    width: 130px;
    border-radius: 100px;
    padding: 1px;
    background: rgb(252, 252, 252);
    box-shadow: 0px 0px 20px;
}

main{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

div{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 60vw;
    height: 34vh;
    background: linear-gradient(140deg, rgba(163, 163, 163, 0.936), rgba(94, 94, 94, 0.771));
    box-shadow: 0px 0px 20px;
    border-radius: 20px;
}

ul{
    display: flex;
    flex-direction: column;
    gap: 30px;
}

li{
    list-style-type: none;
    padding: 5px;
    background-color: rgba(63, 63, 63, 0.858);
    border-radius: 12px;
}

li:hover{
    background-color: rgba(51, 51, 51, 0.978);
}

a{
    display: flex;
    flex-direction: row;
    gap: 5px;
    text-decoration: none;
    color: white;
    font-size: large;
}

main img{
    width: 25px;
}


footer{
    margin-top: 97px;
    margin-left: 9px;
}

/* VERSÃO PARA DESKTOP*/
@media (min-width: 700px){

    body{
        background-size: cover;
    }
    div{
        width: 20vw;
    }

    footer{
        margin-left: 50px;
        margin-top: 9rem;
    }
}