:root {
  --animation-timing: 0.5s;
  --theme-primary: hsl(208 95.8% 28%);
  --theme-accent: hsl(203 88.5% 55.5%);

  font-size: 18px;
}


@media screen and (prefers-reduced-motion: reduce),
(update: slow) {
  :root {
    --animation-timing: 0s;
  }
}

body {
  background: var(--background-color);
  color: var(--text-color);
  display: grid;
  font-family: 'Lato', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica,
    Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
  gap: 1rem;
  grid-template-rows: auto 1fr auto;
  grid-auto-flow: row;
  margin: 0;
  min-height: 100vh;
  padding: 0;
  position: relative;
  z-index: 1;
}

body *,
body *::before,
body *::after {
  box-sizing: border-box;
}

.sr-only {
  height: 1px;
  left: -10000px;
  overflow: hidden;
  position: absolute;
  top: auto;
  width: 1px;
}

.container {
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0 1rem;
  padding-left: calc(1rem + env(safe-area-inset-left));
  padding-right: calc(1rem + env(safe-area-inset-right));
  width: 100%;
}

@media (min-width: 70rem) {
  .container {
    width: 70rem;
  }
}

.mark {
  height: 1em;
  width: auto;
}

.mark-fill {
  fill: currentColor;
}

.site-header {
  background-color: var(--theme-primary);
  color: white;
  padding: calc(1rem + env(safe-area-inset-top)) 0 1rem;
}

.page-home .site-header {
  text-align: center;
}

.site-header .mark-link {
  align-items: center;
  color: inherit;
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  font-size: max(2vw, 1rem);
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.site-header .mark {
  margin-right: 0.5rem;
}

.site-footer {
  padding: 1rem 0 calc(1rem + env(safe-area-inset-bottom));
  text-align: center;
}

.page-main > :first-child {
  margin-top: 0;
}

.page-main > :last-child {
  margin-bottom: 0;
}

.page-main .font-italic {
  font-style: italic;
}

.page-main .icon {
  color: var(--theme-primary);
  fill: currentColor;
  height: 1em;
  width: auto;
}

.page-main a {
  color: var(--theme-primary);
  font-weight: bold;
}

.page-home .page-main {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 10vh;
  text-align: center;
}

.page-home .subhead {
  margin-top: -0.75em;
}

.page-home .lede {
  font-size: 1.5rem;
}

.page-home .icon-circle {
  height: 0.5rem;
  margin: 0 0.5rem;
  position: relative;
  top: -0.1rem;
}

@media (max-width: 24rem) {
  .page-title {
    font-size: 1.5rem;
  }
}