1)
rodape{
padding: 24px;
background-color: #000000;
font-family: "Montserrat", sans-serif;
font-size; 24px;
font-weight: 400;
}
2)
.apresentacao{
padding: 4% 15% 0 15%;
display: flex;
align-items: center;
justify-content: space-between;
}
3)
body{
/*height: 100vh;*/
display: flex;
flex-direction: column;
box-sizing: border-box;
background-color: var(--bege-fundo);
color:var(--marrom-texto);
}
4)
/*header*/
.cabecalho__menu ul {
justify-content: center;
display: flex;
list-style: none;
padding: 0;
margin: 0;
gap: 20px;
}
.cabecalho__menu li{
list-style: none;
}
.cabecalho__menu__link {
display: inline-block;
text-decoration: none;
border-radius: 5px;
color: #6A5952;
background-color: transparent;
transition: color 0.3s ease;
}
.cabecalho__menu__link:hover {
color: var(--marrom-link);
}
5)
/*header*/
.cabecalho__menu ul {
justify-content: center;
display: flex;
list-style: none;
padding: 0;
margin: 0;
gap: 20px;
}
.cabecalho__menu li{
list-style: none;
}
.cabecalho__menu__link {
display: inline-block;
text-decoration: none;
padding: 10px 18px;
border-radius: 5px;
color: #6A5952;
background-color: transparent;
transition: color 0.3s ease;
}