/* style.css */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  width: 100%;
  height: 100%;
}

.poster {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.poster-title {
  font-size: 32px;
  color: #333;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
}

.poster-subtitle {
  font-size: 28px;
  color: #333;
  margin-bottom: 10px;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
}

.poster-image {
  width: 300px;
}
