@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body{
    background-color:#F29F05;
    color:#000000;
    font-family:"Bebas Neue", sans-serif;
    font-weight: 400px;
}

header{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: linear-gradient(to right, yellow);
}

header img{
align-items: center;
height: auto;
width: 150px;
margin-bottom: 5px;
}

nav{
    text-align: center;
}
 
nav a{
    color: rgb(255, 255, 255);
     font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    padding: 5px 12px;
    margin: 0px 20px;
}

nav a:hover{
    color: #ffffff;
    background-color: rgb(0, 0, 0);
    border-radius: 3px;
    padding: 5px 12px;
    margin: 0px 20px;
}

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

#frase-de-efeito{
    letter-spacing: 1px;
    color: rgb(235, 0, 235);
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    text-shadow: 0px 0px 8px #fff;
}

h1{
    color: rgb(255, 255, 255);
    font-size: 2rem;
    margin: 20px;
    text-align: center;
}

.listagem-conteudo{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 7px;
}

.listagem-conteudo a{
    text-align: center;
    text-decoration: none;
    color: #000000;
    background-color:#f8f8f8;
    padding: 5px 12px;
    border-radius: 15px;
}

.listagem-conteudo a:hover {
    color: #0D0D0D;
    background-color: #f1d326;
}

h2{
    color: whitesmoke;
    margin: 15px 0;
}

.topicos{
    text-align: justify;
}

figure{
    margin: 15px 0px;
    text-align: center;
}

figure a img{
    width: 550px;
    height: auto;
    border-radius: 5px;
}

figcaption{
    font-size: 0.9rem;
}

#topo{
    text-align: center;
    margin-top: 20px;
}

 #topo a:hover {
    color: floralwhite;
 }

#topo a{
    text-decoration: none;
    color: #412020;
}

 #topo a:hover {
    color: floralwhite;
 }

 .redes-sociais{
    margin-top: 10px;
 }

 footer{
    background-color:rgb(116, 19, 19);
    color: #fff;
    text-align: center;
    padding: 20px 0px;
 }

 footer .redes-sociais {
    margin-top: 10px;
}

footer .redes-sociais img {
    width: 24px;
    height: 24px;
    transition: transform 0.2s ease;
    margin: 0px 6px;
}

footer .redes-sociais img:hover {
    transform: scale(1.1);
}

@media (max-width: 600px) {
    header img{
        width: 100%;
    }
}
 