* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  min-height: 100vh;
  background: linear-gradient(135deg, #667eea, #764ba2);
  display: flex;
  justify-content: center;
  align-items: center;
}

.quote-container {
  background: #fff;
  padding: 30px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.quote-container h1 {
  margin-bottom: 20px;
  color: #333;
}

#quote {
  font-size: 18px;
  color: #555;
  margin-bottom: 10px;
  opacity: 1;
  transition: opacity 0.3s ease;
}

#author {
  display: block;
  font-size: 14px;
  color: #888;
  margin-bottom: 20px;
}

button {
  padding: 10px 20px;
  border: none;
  background: #667eea;
  color: white;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background: #5a67d8;
}
#quote.loading {
  opacity: 0.6;
  font-style: italic;
}
