@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

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

body {
    background-color: #ffdfafbb;
    color: black;
    font-family: "cabin", sans-serif;
    font-weight: 100;
}

header {
    background: linear-gradient(to right, #63aa00c6, #ff9411dd);
    padding: 30px 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

header img {
    height: 200px;
    width: auto;
    margin-bottom: 20px;
 }

 header nav a { 
    color: #ffdfaf;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    padding: 5px 12px;
    margin: 0px 20px;
 }

 nav a:hover {
    color: #0d0d0d;
    background-color: #ffce1f;
    border-radius: 7px;
    transform: scale(11.1rem);
 }

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

 #frase-de-efeito { 
    letter-spacing: 1px;
    color: #af4c00;
    font-weight: 600;
    font-size: 1.1rem;
    text-shadow: 0px 0px 8px #ff6f007c;
 }

 #frase {
   margin: 20px;
 }


 h1 {
    color: rgb(0, 113, 13);
    font-size: 2rem;
    margin: 30px;
    text-shadow: 0px 0px 8px #02c5129f;
 }

 h2 {
    color: #af4c00;
    margin-top: 40px;
 }

 .Tópicos-livros {
   display: flex;
   justify-content: center;
   flex-wrap: wrap;
   gap: 10px;
 }

 .Tópicos-livros a {
   background-color: #af4c00;
   color: #ffdfaf;
   text-decoration: none;
   padding: 5px 12px;
   border-radius: 15px;
 }

 .Tópicos-livros a:hover {
   background-color: #006010;
   color: #ffd48e;
 }

 .Livros a {
   color: #006010;
 }

 .Livros a:hover {
   color: #af4c00;
 }

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


.Livros p {
   margin: 20px;
   text-align: justify;
}

.Livros a {
   margin-bottom: 20px;
   color: #006010;
   text-decoration: none;
}

img {
    height: 500px;
    width: auto;
    margin: 25px 25px 10px 25px;
 }


 #Topo {
    margin-top: 20px;
}

#Topo a{
    text-decoration: none;
    color: #0d0d0d;
}

#Topo a:hover {
    color: rgb(0, 57, 127);
}

footer p {
    color: #ffdfaf;
}

footer {
    background-color: #006010;
    text-align: center;
    padding: 30px 0px;
}

footer p {
    color: #ffdfaf;
}

.Ícones {
    margin-top: 15px;
}

footer img {
    height: 80px;
    width: auto;
    margin: 0px 25px;
    
}

footer img:hover{
    transform: scale(1.1)
}

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