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

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

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

header{
    display: flex;
    flex-direction: column;
    background: linear-gradient(to right, rgb(0, 0, 0),rgb(255, 0, 0));
    width: 100%;
    height: auto;
    padding: 10px 0px 0px;
    text-align: center;
    justify-content: center;
}

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(116, 78, 116);
    font-weight: 600;
    font-size: 1.1rem;
    text-shadow: 0px 0px 8px #fff;
}

h1{
    color: rgb(250, 254, 255);  
    font-size: 2rem;
    margin: 20px;
}


h2{
    color: rgb(255, 208, 0);
}

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

.main-container p {
    font-weight: 450;
    color: #0D0D0D;
    margin: 5px;
}

.main-block{
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 200px;
    background-color: rgb(0, 0, 0);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 6px #888888;
    justify-content: space-evenly;
    align-items: center;
}

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

.main-block a:hover{
    color: #ffffff;
    background-color: rgb(0, 0, 0);
}

.trailer{
    max-width: 1000px;
    color: #ffffff;
    background-color: rgb(255, 250, 250);
    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: #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 a{
    text-decoration: none;
    color: #0D0D0D;
 }

 footer a:hover{
    color: #fff;
 }

 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: 160px){
    header img {
        width: 100%;
    }
}