body {
  background: #111;
  color: white;
  font-family: Arial;
  text-align: center;
}

.movies {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.movie {
  margin: 10px;
  cursor: pointer;
  width: 150px;
}

.movie img {
  width: 100%;
  border-radius: 8px;
  transition: 0.3s;
}

.movie img:hover {
  transform: scale(1.05);
}

iframe {
  width: 90%;
  height: 500px;
  border: none;
  margin-top: 20px;
}

.search-container {
  margin-bottom: 20px;
}

#searchInput {
  padding: 8px;
  width: 200px;
  border-radius: 4px;
  border: none;
}

#searchBtn {
  padding: 8px 12px;
  border: none;
  border-radius: 4px;
  background-color: #ff0000;
  color: white;
  cursor: pointer;
  margin-left: 5px;
}

#searchBtn:hover {
  background-color: #cc0000;
}
