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

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

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

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

header .logo{
    margin-right: 20px;
    margin-left: 5px;
    color: var(--vermelho);
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 40px;
}

header nav a{
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: none;
    color: #AAA;
    margin-right: 10px;
}

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


/*Filme principal*/

.filmeprincipal{
    font-size:16px;
    background: linear-gradient(rgba(0,0,0,.50),rgba(0,0,0,.50)100%),  url('/img/capitaoamerica1.jpg');

    height: 500px;
    background-size:cover;
 

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

.filmeprincipal .descricao{
    margin-top: 10px;
    margin-bottom: 90px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.titulo{
    margin-top: 15%;
    font-size: 40px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.botao{
    border-radius: 5px;
    font-size: 18px;
    border: none;
    color: black;

    padding: 10px 15px;
    margin-right: 15px;

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

.botao2{
    border-radius: 6px;
    background-color: rgba(0, 0, 0, .50);
    font-size: 18px;
    border: none;
    color: white;

    padding: 10px 15px;
    margin-right: 15px;

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

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

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

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

.botao2 i{
    margin-right: 5px;
}

.container{
    margin-left: 30px;
}

.filmeprincipal .container{
    width: 60%;
}

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