/*
 * Page-Specific Styles
 * Layouts and visual styling for individual pages
 */

body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

h1 {
  margin: 0;
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  text-transform: lowercase;
  color: #e0f2fe;
  text-shadow:
    0 0 10px rgba(56, 189, 248, 0.5),
    0 0 20px rgba(56, 189, 248, 0.4),
    0 0 30px rgba(56, 189, 248, 0.3),
    0 0 40px rgba(56, 189, 248, 0.2);
  animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% {
    text-shadow:
      0 0 10px rgba(56, 189, 248, 0.5),
      0 0 20px rgba(56, 189, 248, 0.4),
      0 0 30px rgba(56, 189, 248, 0.3),
      0 0 40px rgba(56, 189, 248, 0.2);
  }
  50% {
    text-shadow:
      0 0 15px rgba(56, 189, 248, 0.6),
      0 0 25px rgba(56, 189, 248, 0.5),
      0 0 35px rgba(56, 189, 248, 0.4),
      0 0 45px rgba(56, 189, 248, 0.3);
  }
}
