@import url('https://fonts.googleapis.com/css2?family=Manufacturing+Consent&family=Seymour+One&display=swap');

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

body {
    color: #0d0d0d;
    font-family: "seymour", sans-serif;
    font-weight: 400;
    background-repeat: no-repeat;
    background-size: cover;
}

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

header img {
     width:400px;
    height:auto;
    margin-bottom: 5px;

}
   
nav a {
    color: #2f3782;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    padding: 5px 12px;
    margin: 0px 10px;
}

nav a:hover{
    color: #0d0d0d;
    background-color: #D4A373;
    border-radius: 20px;
}

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

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

}

h1 {
    color:#2F3C7E;
    font-size: 2rem;
    margin: 20px;
}

h2 {
    color:#2F3C7E;
}

.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: #ebd2aa;
    padding: 20px;
    border-radius: 10px;
    box-shadow:0px 0px 6px #888888;
    justify-content: space-evenly;
    align-items: center;
}

.main-block a {
    color: #D4A373;
    background-color: #2f3782;
    padding: 5px 12px;
    margin: 3px 0px;
    border-radius: 15px;
    font-weight: 500;
}

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

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

.trailer h2{
margin-bottom: 8px;

}

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



#topo{
    margin-top: 20px;
}

#topo a {

    text-decoration: none;
    color: #0d0d0d;
}

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

footer {
    background-color: #ADD9B8;
    background: linear-gradient( to left ,#ADD9B8, #D4A373);
    color: #f2e0c9;
    text-align: center;
    padding: 20px 0px;
}

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


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

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