@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
html {
  color: #fff;
  background-image: url(../img/netflix_bg-img.jpg);
}

body {
  font-family: Poppins, sans-serif;
  margin: 0 auto;
}

.cabecalho {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 15px;
}
.cabecalho .logo {
  width: 150px;
  height: 65px;
  text-align: center;
  line-height: 55px;
  transition: 0.3s ease-out;
}
.cabecalho .logo:hover {
  color: #FF0000;
}

.filmes {
  padding: 70px 0;
}
.filmes .titulo {
  text-align: center;
  padding: 60px 0;
  font-size: 45px;
  font-weight: 500;
}
.filmes .container-filmes {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  justify-content: center;
  text-align: center;
}
.filmes .card-filme {
  max-width: 260px;
  max-height: 500px;
  position: relative;
}
.filmes .card-filme .titulo-filme {
  background-color: #000;
  width: 100%;
  padding-bottom: 10px;
  padding-top: 10px;
  position: absolute;
  bottom: 0;
}
.filmes .card-filme .filme-infos {
  background-color: #040203;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  font-weight: 600;
  opacity: 0;
  transition: 0.3s;
  padding: 20px;
}
.filmes .card-filme .assistir-agora {
  padding-top: 40px;
  color: #FF0000;
}
.filmes .card-filme:hover .filme-infos {
  opacity: 0.8;
  background-color: #000;
}/*# sourceMappingURL=styles.css.map */