body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #f8f9fa;
  color: #222;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

header {
  margin: 40px 0 20px;
  text-align: center;
}

header h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #4a4a4a;
}

.movies-container {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1000px;
  padding: 0 20px 40px;
  width: 100%;
}

.movie {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 200px;
}

.movie img {
  width: 200px;
  height: 300px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}

.movie img:hover {
  transform: scale(1.05);
}

.movie h2 {
  font-size: 1.2rem;
  color: #333;
  text-align: center;
  margin: 0;
}

