/* style.css */
body {
  font-family: "Montserrat", sans-serif;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #333;
}

.container {
  text-align: center;
  width: 90%;
  max-width: 800px;
}

h1 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 40px;
  font-weight: 700;
  letter-spacing: 1px;
}

.quote-box {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  position: relative;
}

.quote-box::before {
  content: '"';
  font-family: "Playfair Display", serif;
  font-size: 5rem;
  color: #e0e0e0;
  position: absolute;
  top: 10px;
  left: 20px;
}

#para {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #555;
  font-style: italic;
  margin: 0;
  animation: fadeIn 1.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

button {
  padding: 15px 40px;
  font-size: 1.1rem;
  background-color: #2c3e50;
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(44, 62, 80, 0.2);
}

button:hover {
  background-color: #1a252f;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(44, 62, 80, 0.3);
}

/* Responsive design */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  #para {
    font-size: 1.2rem;
  }

  .quote-box {
    padding: 30px 20px;
  }
}
