@import url("../css/partials/_variables.css");
@import url("../css/fonts.css");
@import url("../css/partials/_global.css");
@import url("../css/navbar_style.css");

/*GERAL
*/

#profile {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

#profile h2 {
    font-size: 2rem;
}

#profile .line {
    color: white;
}

#profile h1 {
    text-align: center;
    margin: 4px;
    font-size: 4em;
    color: white;
}

#profile p {
    font-size: 1rem;
    text-transform: uppercase;
}

#text p {
    text-align: center;
}

#social {
    text-align: center;
    width: 100%;
}

#social button {
    border: 4px solid var(--border-color);
}

footer h4 {
    margin-top: 30px;
    font-size: 20px;
    color: red;
}

/*MEDIA QUERIES P/ PC E CELULARES MENORES
*/

@media screen and (min-width: 280px) {

    img  {
        margin-top: 36px;
    }

    h1 span {
        font-size: .7em;
        margin-bottom: 20px;
    }

    #social {
        width: 100vw;
        margin-bottom: 20px;
    }
}

@media screen and (max-height: 640px) {
     #profile {
        height: 100%;
    }
}

@media screen and (max-width: 375px) {
    #profile img {
        width: 12em;
    }

    #profile {
        height: 40%;
    }
    
}

@media screen and (min-width: 768px) {

    nav {
        align-items: center;
        align-content: center;
        text-align: center;
    }

    #profile {
        width: 100%;
        align-content: center;
    }

}

@media screen and (min-width: 1500px) {

    nav {
        display: flex;
        flex-direction: column-reverse;
    }

    #profile {
        flex-direction: column;
        flex-wrap: wrap;
    }

    #profile h1 {
        text-align: end;
        margin: 30px;
        font-size: 150px;
    }

    #profile p {
        text-align: unset;
        display: flex;
        flex-wrap: wrap;
    }

    #perfil {
        height: 100vh;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    #text p {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #perfil img {
        width: 22em;
        border-radius: 170px;
    }


}