/*
1. Soft Aurora / Ethereal Sparkle
Think early morning light or shimmer on water.

Background: #f8f9fa (whisper gray)

Accent 1: #d0f0f6 (frosted aqua)

Accent 2: #fceff9 (pale pink mist)

Sparkle Glow: #e4eafc (lavender highlight)

Text: #2f2f30 (soft graphite)
*/


body {
    background-color: #d0f0f6; 
    text-align:center;
    font-size:24px;
    color: #2f2f30;
}
footer {
    position:absolute;
    bottom:0;
    text-align:center;
}
.lead {
    font-size: 2em;
    text-shadow:#d0f0f6;
}
#navbar {
    font-size:24px;
}
.anton-sc-regular {
  font-family: "Anton SC", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.glimmer-text {
  background: linear-gradient(45deg, #f8d9ff, #b8eaff, #ffe7a2);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: shimmer 3s infinite linear;
}

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