html,
body {
  margin: 0;
  min-height: 100%;
  font-family: Arial, sans-serif;
}

.landing {
  min-height: 100vh;
  display: grid;
  justify-items: center;
  align-items: start;
  background: #fcc640;
  color: #111;
  padding: 24px 0;
}

.panel {
  width: min(640px, calc(100% - 32px));
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
}

.panel h1 {
  margin: 0 0 8px;
  font-size: 28px;
}

.panel p {
  margin: 0 0 18px;
  color: #333;
}

.link-list {
  display: grid;
  gap: 10px;
}

.link-list a {
  display: block;
  border: 1px solid #165e56;
  border-radius: 6px;
  padding: 12px 14px;
  color: #fff;
  background: #28776d;
  text-decoration: none;
  font-weight: bold;
}

.home-link {
  margin-top: 18px;
}

.home-link a {
  color: #165e56;
  font-weight: bold;
}

.school-landing {
  background: #fcc640;
}

.christmas-landing {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(255,255,255,.2) 0 2px, transparent 3px),
    radial-gradient(circle at 78% 18%, rgba(255,255,255,.16) 0 2px, transparent 3px),
    linear-gradient(135deg, #0b3d2e 0%, #123f34 48%, #7a1717 100%);
  color: #17271f;
}

.christmas-panel {
  position: relative;
  z-index: 1;
  background: rgba(255, 248, 232, 0.86);
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.christmas-panel h1 {
  color: #8b1e1e;
}

.christmas-links a {
  border-color: #063c2c;
  background: #0f5b41;
}

.snow-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.snowflake {
  position: absolute;
  top: -32px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 22px;
  line-height: 1;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.42);
  animation-name: snow-fall;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.snowflake:nth-child(1) { left: 4%; animation-duration: 13s; animation-delay: -2s; font-size: 20px; }
.snowflake:nth-child(2) { left: 12%; animation-duration: 18s; animation-delay: -8s; font-size: 30px; }
.snowflake:nth-child(3) { left: 21%; animation-duration: 15s; animation-delay: -5s; font-size: 19px; }
.snowflake:nth-child(4) { left: 29%; animation-duration: 20s; animation-delay: -11s; font-size: 28px; }
.snowflake:nth-child(5) { left: 37%; animation-duration: 16s; animation-delay: -1s; font-size: 22px; }
.snowflake:nth-child(6) { left: 46%; animation-duration: 22s; animation-delay: -14s; font-size: 34px; }
.snowflake:nth-child(7) { left: 54%; animation-duration: 14s; animation-delay: -7s; font-size: 19px; }
.snowflake:nth-child(8) { left: 63%; animation-duration: 19s; animation-delay: -4s; font-size: 26px; }
.snowflake:nth-child(9) { left: 72%; animation-duration: 17s; animation-delay: -10s; font-size: 23px; }
.snowflake:nth-child(10) { left: 81%; animation-duration: 21s; animation-delay: -6s; font-size: 32px; }
.snowflake:nth-child(11) { left: 89%; animation-duration: 15s; animation-delay: -12s; font-size: 20px; }
.snowflake:nth-child(12) { left: 96%; animation-duration: 23s; animation-delay: -3s; font-size: 28px; }

@keyframes snow-fall {
  0% {
    transform: translate3d(0, -8vh, 0) rotate(0deg);
    opacity: 0;
  }

  12% {
    opacity: 0.9;
  }

  100% {
    transform: translate3d(22px, 108vh, 0) rotate(360deg);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .snowflake {
    animation: none;
    opacity: 0.34;
  }
}

.frame-page {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #111;
}

.form-frame-page {
  height: auto;
  min-height: 100vh;
  overflow: auto;
  overflow-x: hidden;
  background: #fcc640;
}

.form-frame-page iframe {
  height: 2200px;
}

.supplies-frame-page {
  height: auto;
  min-height: 100vh;
  overflow: auto;
  overflow-x: hidden;
  background: #fcc640;
}

.supplies-frame-page iframe {
  height: 3600px;
}

.standard-frame-page {
  height: auto;
  min-height: 100vh;
  overflow: auto;
  overflow-x: hidden;
  background: #fcc640;
}

.standard-frame-page iframe {
  height: 2600px;
}

.christmas-frame-page {
  height: auto;
  min-height: 100vh;
  overflow: auto;
  overflow-x: hidden;
  background: #0b3d2e;
}

.christmas-frame-page iframe {
  height: 3000px;
}

@media (min-width: 701px) {
  .form-frame-page iframe {
    height: 100vh;
  }

  .supplies-frame-page iframe {
    height: 100vh;
  }

  .standard-frame-page iframe,
  .christmas-frame-page iframe {
    height: 100vh;
  }
}

iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
