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

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

 h2 {
    color: #af4c00;
 }

.main-container {
    display: flex;
    max-width: 1000px;
    gap: 20px;
    flex-wrap: wrap;
    margin: 0 auto;
}

.main-block {
    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;
}

.main-block a {
    color: #ffdfaf;
    background-color: #569400;
    text-decoration: none;
    padding: 5px 12px;
    margin: 5px 0px;
    border-radius: 15px;
    font-weight: 500;
}

.main-block p {
    margin: 5px 0px;
}

.main-block a:hover {
    color: #0d0d0d;
    background-color: #ffce1f;
}

.Trailer {
    max-width: 1000px;
    background-color: #ffd99f;
    border-radius: 15px;
    box-shadow: 0px 0px 6px #888888;
    margin-top: 20px;
    margin-right: auto;
    margin-left: auto;
    padding: 20px;
}

.Trailer h2 {
    margin-bottom: 10px;
}

.thumbnail {
    width: 100%;
    aspect-ratio: 16/9;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    box-shadow: #888888;
    margin-top: 15px;
}

#Topo {
    margin-top: 20px;
}

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

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

footer {
    background-color: #569400;
    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)
}

    
