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;
}

.christmas-landing {
  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 {
  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;
}

.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;
}
