/*
* Random Quote Generator
* A simple web application that generates random quotes.
* Author: Aditya Chauhan
* Website: https://cloudxtech.io/
*/

body {
  margin: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #ff9a9e, #fad0c4, #a1c4fd, #c2e9fb);
  background-size: 400% 400%;
  animation: gradientShift 18s ease infinite;
  font-family: 'Segoe UI', sans-serif;
  color: #fff;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.container {
  text-align: center;
  background: rgba(0,0,0,0.5);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  backdrop-filter: blur(8px);
  max-width: 600px;
  width: 90%;
}

.quote-box {
  margin: 1.5rem 0;
  font-size: 1.3rem;
  font-style: italic;
}

#author {
  margin-top: 1rem;
  font-size: 1.1rem;
  font-weight: bold;
}

button {
  background: #fff;
  color: #333;
  border: none;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
  font-weight: bold;
}

button:hover {
  background: #00c6ff;
  color: #fff;
}
