body {
  font-family: sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-color: #f0f0f0;
  margin: 0;
}

.quote-container {
  background-color: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 600px;
  margin: 2rem;
}

#quote {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

#author {
  font-size: 1rem;
  font-style: italic;
  color: #555;
}

#new-quote-button {
  background-color: #333;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

#new-quote-button:hover {
  background-color: #555;
}