@import url('https://fonts.googleapis.com/css2?family=Righteous&family=Sarala&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

body {
    font-size: 100%;
    background-image: url("./img/backteste.jpg");
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center;

}
.cabecalho {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content:space-between;
    padding: 24px;

}
.cabecalho-imagem{
    border-radius: 60%;
    width: 100px;
    transition: all 0.5s;

}
.cabecalho-imagem:hover{
    border-radius: 0%;
    transition: all 0.5s;

}
.cabecalho-menu{
    display: flex;
    gap: 40px;
}
.cabecalho-menu-item{
    font-family: 'Sarala', sans-serif;
    color: #FFF2E7;
    font-weight: 400;
    font-size: 20px;
}
.conteudo{
    margin-bottom: 48px;
    border-top: 0.4px solid #FFF2E7;
}
.conteudo-principal{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}
.conteudo-principal-escrito{
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.conteudo-principal-escrito-titulo{
    font-family: 'Righteous', cursive;
    font-weight: 400;
    font-size: 64px;
    color: #FFF2E7;

}
.conteudo-principal-escrito-subtitulo{
    font-family: 'Sarala', sans-serif;
    font-weight: 400;
    font-size: 24px;
    color: #FFF2E7;
}
.conteudo-principal-escrito-botao{
    background-color: rgba(13, 16, 236, 0.342);
    width: 180px;
    height: 60px;
    border: none;
    box-shadow: 4px 5px 4px rgba(0, 0, 0, 0.25);
    border-radius: 25px;
    font-family: 'Sarala', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #FFF2E7;
}
.conteudo-principal-escrito-botao:hover{
    background-color: rgba(50, 48, 202, 0.322);
}

.conteudo-principal-imagem{
    width: 450px;
    border-radius: 50%;
    padding-top: 35px;
    transition: all 0.5s;
}
.conteudo-principal-imagem:hover{
    border-radius: 0%;
    transition: all 0.5s;
}
.conteudo-secundario{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-top: 48px;
}
.conteudo-secundario-titulo{
    border-top: 0.4px solid #FFF2E7;
    padding-top: 48px;
    font-family: 'Righteous', cursive;
    font-weight: 400;
    font-size: 30px;
    color: #FFF2E7;
    margin-bottom: 16px;
}
.conteudo-secundario-paragrafo{
    font-family: 'Sarala', sans-serif;
    font-weight: 300;
    font-size: 20px;
    color: #FFF2E7;
}
.rodape{
    padding: 32px;
    border-top: 0.4px solid #FFF2E7;
}
.rodape-imagem{
    height: 48;
    display: block;
    margin: 0 auto;
}