body {
  background: linear-gradient(135deg, #ffb347, #ffcc33);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

#quote-box {
  background: rgba(255, 165, 0, 0.2);
  backdrop-filter: blur(10px);
  padding: 30px 40px;
  border-radius: 15px;
  max-width: 600px;
  text-align: center;
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.3);
  animation: fadeIn 0.8s ease-in-out;
}

#text {
  font-size: 1.8rem;
  font-weight: bold;
  color: #4a2c00;
  margin-bottom: 15px;
  line-height: 1.4;
}

#author {
  font-size: 1.2rem;
  font-style: italic;
  color: #5c3d00;
  margin-bottom: 25px;
}

button, a {
  background: linear-gradient(90deg, #ff7e00, #ffb347);
  color: white;
  padding: 10px 18px;
  margin: 5px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0px 4px 10px rgba(255, 126, 0, 0.4);
  transition: all 0.3s ease-in-out;
}

button:hover, a:hover {
  background: linear-gradient(90deg, #ffb347, #ff7e00);
  transform: translateY(-2px);
  box-shadow: 0px 6px 15px rgba(255, 126, 0, 0.6);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
