body {
  font-family: Arial, sans-serif;
  background-image: url("https://your-direct-image-link-here.jpg"); /* replace with direct image URL */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 100vh;
  color: white;
  text-align: center;
  padding: 20px;
}

#story {
  font-size: 22px;
  margin: 40px auto 20px auto;
  width: 80%;
  background: rgba(0,0,0,0.5); /* semi-transparent background so text is readable */
  padding: 15px;
  border-radius: 10px;
}

#choices {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
  width: 80%;
}

button {
  padding: 10px 18px;
  margin: 8px;
  background: #ff4fa7;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 18px;
  width: 200px;
}