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

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

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

header .container {
    border: 1px solid black;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

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

header nav a {
    text-decoration: none;
    color: #AAA;
    margin: 0 10px 0 0;
    transition: all 0.3s;
}

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

.filme-principal {
    font-size: 16px;
    background-image: url(../img/comics.jfif);
    background-size: cover;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.filme-principal .descricao {
    margin: 20px 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 5px;
    padding: 10px;
}

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

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

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

.container {
    margin: 0 0 0 20px;
}

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

button i {
    margin: 0 10px 0 0;
}

.box-filme {
    height: 100%;
    width: 100%;
    display: block;
    opacity: 0.9;
    transition: all 0.2s;
}

.box-filme:hover {
    opacity: 1;
}

.carrosel {
    margin: 15px 0 0 0;
}

.container nav a {
    text-transform: uppercase;
    font-size: 20px;
}

footer a {
    color: red;
    text-decoration: none;
}