:root{
    --vermelho: #E50914;
    --preto: #141414;
}

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

/*elementos base*/
body{
    background: var(--preto);
    font-family: 'Times New Roman', Times, serif;
    color: white;
}

header .logo{
    margin-left: 5px;
    color: var(--vermelho);
    font-family: 'Arial Black',Times;
    font-size: 40px;
}

header .container{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

header nav a{
    text-decoration: none;
    color: #CCC;
    margin-right: 10px;
}

header nav a:hover{
    color: #fff;
}

/*======================================================filme principal=============================================*/

.filme-principal{
    font-size: 16px;
    background: linear-gradient(rgba(0,0,0,.50),rgba(0,0,0,.50)), url('/img/Underworld-High_Life.png');

    height: 400px;

    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.filme-principal .descricao{
    margin-top:10px;
    margin-bottom: 40px;
}

.titulo{
    margin-top: 15px;
    font-size: 40px;
}

.botao{
    background-color: rgba(0,0,0,.50);
    border:none;
    color:white;

    padding:15px 30px;
    margin-right:15px;
    font-size: 12px;
    transition: .3s;

    cursor: pointer;
}

.botao:hover{
    background-color: white;
    color: black;
}

.botao i{
    margin-right: 7px;
}

.box-filme{
    height: 100%;
    width: 100%;
    display: block;
}

.box-filme:hover{
    border: 3px solid white;
    overflow: hidden;
    transition: .1s;
}
.carrosel-filmes{
    margin-top: 5px;
}

.botoes a{
    text-decoration: none;
    color: white;
    margin-right: 10px;
}

/*===============================================rodape da página===============================*/

