h1 {
  text-align: center;
  color: rgb(38, 196, 133);
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  margin: 20px;
}

main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 10px;
  border: 3px solid green;
  width: 80%;
  margin: auto;
}

main > div {
  margin: 6px;
  text-align: center;
  width: 45%;
}

.movie-title {
  text-transform: uppercase;
  text-decoration: underline;
}

.movie-release {
  color: rgb(12, 114, 48);
  margin-bottom: 10px;
}
main > div > img {
  width: 80%;
  height: 500px;
  object-fit: cover;
}

h2 {
  font-size: 1em;
}

/* @media screen (max-width: 400px) {
  main > div > img {
    max-width: 50%;
    height: 200px;
    object-fit: cover;
  } */
}
