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

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

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

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

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