/*LIMPANDO FORMATAÇÃO GERAL */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--fonte1);
}

/* IMAGEM DE FUNDO */
body{
    background-image: url('/assets/img/backgroung.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/*AREA DO CONTEUDO PRINCIPAL*/
main{
    flex: 1;
    align-items: center;
    justify-content: center;
    padding: 5rem;
}

section{
    margin: auto;
    max-width: 90%;
    text-align: center;
}

/* SOMBRA PROJETADA */
.sombra{
    box-shadow: 0px 0px 8px #00000070;
}

/*FORMATAÇÃO DE TEXTOS*/
.textos{
    text-shadow: 0px 0px 5px #00000070;
    color: var(--cor-font1);
}

h1{
    font-size: clamp(1.5rem, 4vw, 2rem);
}

h2{
    font-size: clamp(1rem, 3vw, 1.5rem);
}

/*FOTO DE PERFIL*/
img{
    max-width: 150px;
    width: 40%;
    height: auto;
    border-radius: 50%;
}

/* FOOTER */
footer{
    text-align: center;
    padding: 1rem;
}

@media (max-width: 480px) {
    main{
        padding: 1rem;
    }
    img{
        max-width: 100px;
    }
}