@import url(https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600&display=swap);

:root {

    font-family: 'Outfit', sans-serif;

    /* Cores Primarias */
    --Softblue: hsl(215, 51%, 70%);
    --Cyan: hsl(178, 100%, 50%);

    /* Cores Neutras */
    --AzulEscuro: hsl(217, 54%, 11%);
    --AzulMedio: hsl(216, 50%, 16%);
    --AzulClaro: hsl(215, 32%, 27%);
    --White: hsl(0, 0%, 100%);
}

/* Web CSS */

body{
    background-color: var(--AzulEscuro);
    padding-top: 20vh;
}


main{
    padding: 10px;
    border-radius: 20px;
    background-color: var(--AzulMedio);
    margin: auto;
    width: 22%;
}

#imgPrincipal{
    padding-top: 6%;
    text-align: center;
    margin: auto;
}

#imgEquilibrium{
    border-radius: 9px;
    width: 90%;
}

#nome{
    font-size: 21px;
    font-family: Outfit;
    padding: 6%;
    text-align: left;
    color: var(--White);
}

#description{
    text-align: inherit;
    font-weight: 300;
    line-height: 23px;
    color: var(--Softblue);
    padding-left: 6%;
    padding-bottom: 6%;
}

div{
    
    align-items: center;
    display: flex;
}

#values{
    margin: auto;
    width: 90%;
    display: flex;
    justify-content: space-between;
    padding-bottom: 10px;

}

#eth{
    color: var(--Cyan);
}

h2{
    
    color: var(--Softblue);
    padding-left: 10px;
    font-size: 1rem;
    font-weight: 100;
    font-family: Outfit;
}
hr{
    border-color: var(--AzulClaro);
    width: 90%;
}

footer{
    padding-bottom: 6%;
    padding-top: 6%;
    margin: auto;
    width: 90%;
    align-items: center;
    display: flex;
}

#foto{
    border-radius: 50px;
    border-width: 1px;
    border-style: solid;
    border-color: var(--White);
    width: 30px;
}

#destaque{
    color: var(--White);
}

@media (max-width:375px) {
    body {
        padding-top: 25%;
        background-color: var(--AzulEscuro);
    }
    
    main{
        border-radius: 20px;
        margin: auto;
        background-color: var(--AzulMedio);
        width: 90%;
        padding-top: 6%;
        padding-bottom: 10%;
    }


    #imgEquilibrium{
        border-radius: 10px;
        width: 90%;
        margin: auto;
        display: block;
     
    }

    #nome{
        font-size: 25px;
        font-family: Outfit;
        padding: 6%;
        text-align: left;
        color: var(--White);
    }

    #description{
        font-weight: 300;
        line-height: 30px;
        color: var(--Softblue);
        width: 80%;
        padding-left: 6%;
        padding-bottom: 6%;
    }

    div{
        
        align-items: center;
        display: flex;
    }

    #values{
        margin: auto;
        width: 90%;
        display: flex;
        justify-content: space-between;
        padding-bottom: 10px;

    }
    
    #eth{
        color: var(--Cyan);
    }

    h2{
        color: var(--Softblue);
        padding-left: 10px;
        font-size: larger;
        font-weight: 200;
        font-family: Outfit;
        display: block;
    }
    hr{
        border-color: var(--AzulClaro);
        color: 0;
        width: 90%;
    }

    footer{
        padding-top: 6%;
        margin: auto;
        width: 90%;
        align-items: center;
        display: flex;
    }

    #foto{
        border-radius: 50px;
        border-width: 1px;
        border-style: solid;
        border-color: var(--White);
        width: 40px;
    }

    #destaque{
        color: var(--White);
    }
}

