*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Roboto Mono", monospace;
  text-decoration: none;

}

body {
  background: rgb(0,25,195);
  background: linear-gradient(180deg, rgba(0,25,195,1) 0%, rgba(9,9,121,1) 69%, rgba(2,0,36,1) 100%);
  height: 200vh;
  text-align: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.title{
  color: white;
  font-size: 26px;
  font-weight: bold;
  margin-left: 20px;
}

.header{
  border-bottom: beige 2px solid;
  height: 60px;
  display: flex;
  align-items: center;
}

.containerHeader{
  display: flex;
  align-items: center;
}

.logo{
  width: 48px;
  margin: 5px;
  margin-left: 10px;
}

.bar{
  color: white;
  position: absolute;
  right: 20px;
}

.pages{
  font-size: 20px;
  cursor: pointer;
  margin-inline: 15px;
  border-bottom: white 1px solid;
  color: white;
}

.pages:hover{
  color: #388fff;
}

body > img {
  margin: 0 10px;
}

img {
  max-height: 250px;
  
}


.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;
  margin-top: 10px;
  width: 300px;
  border-radius: 15px;
  border: none;
}

.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;
}

.titleMovies{
  color: white;
  font-size: 12px;
  display: inline;
  max-width: 190px;
  margin-bottom: 80px;
}

.movies{
  display: inline-flex;
  align-items: center;
  flex-direction: column;
}

#rodape{
  position: fixed;
  bottom: 2px;
  left: 2px;
  color: white;
  font-size: 10px;
}

