body {
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #89f7fe, #66a6ff);
  font-family: "Segoe UI", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.quote-box {
  background-color: #fff;
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  max-width: 500px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.quote-box .quote-text {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 1rem;
  line-height: 1.5;
}
.quote-box .quote-author {
  font-size: 1rem;
  font-style: italic;
  color: #777;
  margin-bottom: 2rem;
}
.quote-box button {
  background: #66a6ff;
  color: white;
  border: none;
  padding: 0.7rem 1.5rem;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s;
}
.quote-box button:hover {
  background: #4e8bd4;
}