:root {
  --vermelho: #e50914;
  --preta: #141414;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base da pagina */
body {
  background: var(--preta);
  font-family: "Arial", Times, serif;
  color: white;
}

header .container {
  display: flex;
  flex-direction: row;
  align-items: center; /*Alinhamento horizontal*/
  justify-content: space-between; /*Alinhamento itens*/
  margin-right: 50px;
  height: 60px;
}

header .logo {
  margin-left: 5px;
  color: var(--vermelho);
  font-family: "Arial Black", Times;
  font-size: 30px;
}

header nav a {
  /* Itens do Menu */
  text-decoration: none;
  color: var(--white);

  padding: 2px;
  padding-inline: 22px;
  border-radius: 5px;

  /* background-color: #ffffffb4; --- not necessary*/
}

header nav a:hover {
  color: #fff;
  background-color: var(--vermelho);
}

/* Filme */
.filme-principal {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5) 100%),
    url("/img/capa2.jpg");

  font-size: 16px;

  height: 700px;
  border-radius: 10px;

  background-size: cover;
  background-color: white;

  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", Arial, sans-serif;
}

.botao {
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;

  padding: 15px 30px; /* vertical - horizontal */
  font-size: 12px;
  cursor: pointer;
  transition: 0.3s ease all;
  border-radius: 10px;
}

.botao:hover {
  background-color: white;
  color: black;
}

.botao i {
  margin-right: 8px;
}

.container {
  margin-left: 30px;
}

.filme-principal .container {
  width: 70%;
}

.box-filme {
  height: 100%;
  width: 100%;
  display: block;
  border-radius: 10px;
}

.carrosel-filmes {
  margin-top: 5px;
}

/*  New updates need descriptions!!!*/
