@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;
 }

 .cast-container {
   display: flex;
   flex-flow: wrap;
   gap: 20px;
   justify-content: center;
   text-align: center;
 }

 .cast-member p {
   display: flex;
   flex-wrap: wrap;
   flex-basis: 50px;
   flex-shrink: auto;
   text-align: justify;
   justify-content: center;
   margin-top: 20px;
 }

 .cast-container img {
   height: 300px;
   width: auto;
   border-radius: 7px;
    box-shadow: 0px 0px 6px #888888;
 }

 .cast-member {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 200px;
    background-color: #ffd99f;
    padding: 20px;
    border-radius: 7px;
    box-shadow: 0px 0px 6px #888888;
    justify-content: space-evenly;
    align-items: center;
 }

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

 h2 {
    color: #af4c00;
 }

 #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%;
    }
}