:root {
    --vermelho: #e50914;
    --preto: #141414;
    --branco: #ffffff;
    --menu: #AAA;
}

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

body {
    background: var(--preto);
    font-family: Arial, Helvetica, sans-serif;
    color: var(--branco);
}

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

header .logo {
    flex-grow: 1;
    margin-left: 5px;
    color: var(--vermelho);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 40px;
}
header nav{
    flex-grow: 5;
}

header nav a {
    text-decoration: none;
    color: var(--menu);
    margin-right: 10px;
    flex-wrap: wrap;
}

header nav a:hover {
    color: var(--branco);
}

header .user {
    flex-grow: 6;
    display: flex;
    align-items: center;
    align-content: flex-end;
    justify-content: flex-end;
}
header .user img{
    width: 25px;

}
.user a{
    margin-right: 20px;
    color: var(--branco);
    text-decoration: none;
}

.user .ico-user{
    margin-right: 3px;
}
/*Filme principal*/

.filme-principal {
    font-size: 16px;
    background: linear-gradient(rgba(0, 0, 0, .50), rgba(0, 0, 0, .50)100%), url('../img/house-card2.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.filme-principal .descricao {
    margin-bottom: 50px;
}




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

.descricao {
    width: 50%;
}

.botao {
    background-color: rgba(0, 0, 0, .50);
    border: none;
    color: white;
    padding: 15px 30px;
    margin-right: 15px;
    font-size: 12px;
    cursor: pointer;
    transition: .3s ease all;
}

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

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

.container {
    margin-left: 20px;
}

.filme-principal .container {
    width: 70%;
}
.classificacao{
    font-size: 25px;
    margin-left: 20px;
    margin-top: 3%;
    margin-bottom: 2%;
}

.box-filme {
    height: 80%;
    width: 80%;
    display: block;
}
.carrosel-filmes{
    margin: auto;
    width: 100%;
}

