body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f0f8ff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}
.container {
  text-align: center;
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.quote {
  font-size: 1.5rem;
  margin: 1rem 0;
  min-height: 3rem;
}
button {
  padding: 0.5rem 1rem;
  font-size: 1rem;
  cursor: pointer;
  background: #0066cc;
  color: #fff;
  border: none;
  border-radius: 4px;
}
button:hover {
  background: #004999;
}
