:root {
    --vermelho:#D9042B;
    --preta: #211e1e;

}

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

/* Elementos base */

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

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

header .logo {
    margin-left: 5px;
    color: var(--vermelho);
   font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 40px;
}

header nav a {
    text-decoration: none;
    color: #AAA;
    margin-right: 30px;
    font-size: 18px;
}

header nav {
    margin-right: 50px;
}

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) 100%), url("../img/empire4.jpg");

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

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

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

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

    padding: 15px 30px;
    margin-right: 15px;
    font-size: 12px;

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

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

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

.container {
    margin-left: 30px;
}

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

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

.carrosel-filmes {
    margin-top: 5px;
}

