body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #1d2671, #c33764);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

.container {
  text-align: center;
}

.quote-box {
  background: rgba(255, 255, 255, 0.12);
  padding: 30px;
  border-radius: 20px;
  width: 500px;
  max-width: 90%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

#quote {
  font-size: 24px;
  line-height: 1.6;
  margin-bottom: 20px;
}

#author {
  font-size: 18px;
  margin-bottom: 20px;
  color: #f0f0f0;
}

button {
  padding: 12px 22px;
  border: none;
  border-radius: 10px;
  background: white;
  color: #333;
  font-size: 16px;
  cursor: pointer;
  font-weight: bold;
}

button:hover {
  background: #f3f3f3;
}