@import url('https://fonts.googleapis.com/css2?family=Bentham&display=swap'); /*google fonts. get font, get embased code, import, 1 copiar*/

*{
    box-sizing: border-box; 
    margin: 0px;
    padding: 0px;
}
body{
    background-color:  	#fffbe9;
    font-family: "Bentham", sans-serif; /*fonte do site e uma fonte alternativa, reserva*/
    font-weight: 500; /*espessura da letra*/
    letter-spacing: normal 

}

header{ 
    background:linear-gradient(to right, #DCDCDC, #B0C4DE);
   padding: 20px 0px;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items:center ;
   flex-wrap: wrap;
}
header img{ 
    width: 300px; /*largura*/
    height: auto; /*altura*/
    margin-bottom: 5px; /*margem*/
}
nav{
    text-align: center;
}
nav a{
    color: cornflowerblue;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none; /*retirar sublinhado do texto*/
    padding: 5px 12px;
    margin: 0px 20px;
}
nav a:hover{
 color: #000080;
 background-color:#ADD8E6; 
 border-radius: 15px;
} /*menu de navegação*/
/*--------------------------------------------------------*/

main{
    text-align: center;
    margin: 20px;
}

#frase-de-efeito{
letter-spacing: 1px;
color: #245fe0;
font-weight: 700;
font-size: 1rem;
text-align: center;
}

h1{
    color: #000080;
    font-size: 25px;
    text-align: center;
    margin: 20px;
}

.listagem-conteudo{
    display: flex;
    justify-content:center ;
    flex-wrap: wrap;
    gap: 7px;
}
.listagem-conteudo a{
    text-align: center;
    text-decoration: none;
    color: #245fe0;
    background-color: #ADD8E6;
    padding: 5px 12px;
    border-radius: 15px;
    font-weight: 500;
}
.listagem-conteudo a:hover{
    color: #000080;
    background-color: #DCDCDC;
}

h2{
    margin: 15px 0;
    color: #245fe0;
}
.tópicos{
    text-align: justify;
}
figure{
    margin: 15px 0;
    text-align: center;
}
figure img{
    width: 350px;
    height: auto;
    border-radius: 5px;
}
figure caption{
    font-size: 0.9rem;
}
figure a{
    text-decoration: none;
    color: #245fe0;
}
#topo{
    margin-top: 20px;
    text-align: center;
}
#topo a {
    text-decoration: none;
    color: #ADD8E6;

}
#topo a:hover{
    color: aqua;
}

footer{
    background-color:#ADD8E6 ;
    color: #000080;
 text-align: center;
 padding: 20px;
}
.redes{
    margin-top: 10px;
}
footer img {
    width: 25px;
    height: 25px;
    transition: transform 0.2s ease ;
    margin: 0px 6px;
}
footer img:hover{
    transform: scale(1.5);
}
@media (max-width:700px) {
    figure img{ width: 100%; }
    
}