@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap");

* {
	color: white;
	font-family:Poppins, sans-serif;
  }


body {
    font-family: "Roboto Mono", monospace;
    text-align: center;
    background-image: url("https://www.alura.com.br/assets/img/imersoes/dev-2021/dia-04-aluraflix-e-filmes.png");
    background-color: #000000;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
  }
  
  .container {
    text-align: center;
    padding: 20px;
  }
  
  .page-title {
    color: #ffffff;
    margin: 0 0 5px;
  }
  
  .page-subtitle {
    color: #ffffff;
    margin-top: 5px;
  }
  
  .page-logo {
    width: 200px;
  }
  
  .alura-logo {
    width: 40px;
    position: absolute;
    top: 10px;
    right: 10px;
  }
  
  #listaFilmes img {
    margin: 10px;
    max-height: 250px;
  }
  
  .form-wrapper {
    margin: 0 0 15px;
  }
  
  .form-wrapper input {
    display: block;
    margin: 0 auto;
    padding: 10px 15px;
  }
  
  .form-wrapper button {
    border: 0;
    color: #ffffff;
    background: #da1e26;
    font-weight: bold;
    padding: 15px 20px;
    font-size: 16px;
    border-radius: 4px;
    margin-top: 20px;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .form-wrapper button:hover {
    opacity: 0.8;
  }

  .listaIMGFilmes {
    width: 150px;
    height: 210px;
    border-radius: 15px;
  }

  #nome-filme,
  #trailer-filme,
  #img-filme,
  #btnExecutar,
  select {
    margin: 5px;
    color: black;
    outline: none;
    border-radius: 5px;
    border: 2px solid white;
  }

  #opcoesCategoria{
    padding: 2px;
    color: white;
    width: 170px;
    background: grey;
    border: none;
  }

  #nome-filme,
  #trailer-filme,
  #img-filme {
    background: transparent;
    color: white;
    width: 160px;
  }

  #btnExecutar {
    width: 150px;
  }