/* Styles specific to the holding/index page */

body {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  justify-content: center;
  align-items: center;
}

header {
  background: rgba(255, 255, 255, 0.95);
  color: var(--text-color);
  border-radius: 1rem;
  max-width: 600px;
  margin: 2rem auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.6s ease-out;
}

header h1 {
  color: var(--primary-color);
  font-size: 2.5rem;
}

header p {
  color: var(--text-light);
  font-size: 1.2rem;
}

footer {
  background: transparent;
  color: white;
  border: none;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
  header {
    margin: 1rem;
    padding: 1.5rem;
  }
  
  header h1 {
    font-size: 1.8rem;
  }
  
  header p {
    font-size: 1rem;
  }
}
