body {
  margin: 0;
  padding: 0;
  font-family: 'Georgia', serif;
  background: linear-gradient(to bottom right, #fceabb, #f8b500);
  color: #2c2c2c;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  background-color: rgba(255, 255, 255, 0.85);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  max-width: 600px;
  text-align: center;
}

.line {
  margin: 15px 0;
  font-size: 1.3em;
  transition: transform 0.3s ease-in-out;
}

.line:hover {
  transform: scale(1.05);
}

button {
  margin-top: 30px;
  padding: 10px 20px;
  font-size: 1em;
  background-color: #f8b500;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  color: white;
  font-weight: bold;
}

button:hover {
  background-color: #e09500;
}

#reflectionBox {
  margin-top: 20px;
  font-style: italic;
  color: #444;
}
