/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

body {
  background-color: #f8f9fa; /* Light gray background */
  display: flex;
  justify-content: center;
  align-items: center;
}

h1 {
  font-size: 2rem;
}

.ai-quote {
  border-left: 4px solid #ccc;
  padding: 10px;
  font-style: italic;
  background-color: #f9f9f9;
}

.congratulations-card {
  background: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  text-align: center;
  padding: 30px;
}
.congratulations-card h1 {
  font-size: 2rem;
  color: #198754; /* Bootstrap green */
}
.congratulations-card p {
  font-size: 1.2rem;
  margin-top: 10px;
}
.fireworks {
  font-size: 3rem;
  animation: bounce 1s infinite alternate;
}
@keyframes bounce {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10px);
  }
}
