:root{
    --vermelho: #e50914;
    --preta: #141414;
}

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

body{
    background-color: var(--preta);
    font-family: 'Times New Roman', Times, serif;
    color: white;
}

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

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

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

}

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

.filme-principal{
    font-size: 16px;
    background: linear-gradient(rgba(0,0,0,.50), rgba(0,0,0,.50) 100% ), url('https://www.themoviedb.org/t/p/w500_and_h282_face/AnfXhKJwb9rBa8cvPBV54XgJxMF.jpg') ;
    height: 400px;
    background-size: cover;

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

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

.titulo{
    margin-top: 15%;
    font-size:  40px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.button{
    /*background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5) 100%); */
    background-color: rgba(0,0,0,.50);
    border: none;
    color: white ;
    padding: 15px 30px;
    margin-right: 15px;
    font-size: 12px;
   /* font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif; */

    cursor: pointer;
    transition: .3s ease all;
}

.button:hover{
    background-color: white;
    color: black;

}

.button i{
    margin-right: 8px;
}

.container{
    margin-left: 30px;
    margin-right: 10px;
}

.filme-principal .container{
    width: 70%;
}

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