body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to right, #141E30, #243B55);
  color: white;
  text-align: center;
  margin: 0;
  padding: 0;
}

h1 {
  margin-top: 40px;
  font-size: 2.5em;
}

select,
button {
  padding: 10px;
  font-size: 1em;
  margin: 10px;
  border-radius: 8px;
  border: none;
}

button {
  background-color: #00adb5;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background-color: #028090;
}

.movie-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.movie-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 20px;
  width: 200px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}

.movie-card:hover {
  transform: scale(1.05);
}
