h1 {
  font-size: 100px;
}

h2 {
  font-weight: 700;
  font-size: 40px;
  line-height: 2;
}

h3 {
  font-weight: 300;
  font-size: 30px;
  margin: 10px;
}

h4 {
  font-weight: 300;
  font-size: 22px;
  margin: 0px 120px;
  line-height: 2;
}

h5 {
  font-weight: 300;
  font-size: 16px;
  line-height: 2;
}

.main {
  margin: 10px 200px;
  margin-top: 80px;
}

@media screen and (max-width: 1000px) {
  .main {
    margin: 10px 100px;
    margin-top: 80px;
  }
}

@media screen and (max-width: 800px) {
  .main {
    margin: 10px 50px;
    margin-top: 80px;
  }
}

.banner {
  text-align: center;
}

.input-div {
  text-align: center;
  margin: 10px 0px;
}

input {
  background: #1f2228;
  border: none;
  padding: 15px 20px;
  font-size: 16px;
  width: 50vw;
  color: #fff;
  text-align: center;
  margin: 10px;
  border-radius: 23px;
  text-decoration-style: solid;
  text-decoration-color: #fff;
  transition: 300ms;
  outline: none;
}

::placeholder {
  color: #495057;
  font-size: 16px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 10px;
  text-align: center;
  line-height: 1.7;
  margin: 0px 100px;
}

.movie-card {
  width: 150px;
  height: 225px;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  transition: all 300ms;
  border: 3px solid transparent;
  display: block;
  margin: 15px;
}

.movie-card:hover {
  transform: scale(1.05);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  border-color: var(--halloween);
}

.movie-card:active {
  transform: scale(1);
  border-color: transparent;
}

.movie-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.movie-card .content {
  box-sizing: border-box;
  width: 100%;
  position: absolute;
  padding-bottom: 3px;
  height: auto;
  bottom: 0;
}

.movie-card .title {
  font-size: 16px;
  color: #fff;
  text-align: center;
  margin: 0;
  opacity: 0;
  transition: all 300ms;
  line-height: 1.5;
  margin: 0px 10px;
}

.movie-card:hover .title {
  opacity: 1;
}

.movie-card:hover .content {
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
}