:root {
  color-scheme: dark;
  font-family:
    Inter,
    Avenir,
    Helvetica Neue,
    Arial,
    sans-serif;
  background: #08130f;
  color: #f2efe5;
}

* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
header,
main,
footer {
  width: min(90%, 58rem);
  margin: auto;
}
header {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(242, 239, 229, 0.18);
}
a {
  color: #b9f36b;
  text-underline-offset: 0.25rem;
}
header a {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}
main {
  padding: 7rem 0;
}
.eyebrow,
.updated {
  color: #9baca3;
  font-family: SFMono-Regular, Consolas, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
h1 {
  max-width: 10ch;
  margin: 2rem 0 1rem;
  font-family:
    Iowan Old Style,
    Baskerville,
    Times New Roman,
    serif;
  font-size: clamp(4rem, 11vw, 7.5rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.85;
}
.updated {
  margin-bottom: 6rem;
}
section {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(242, 239, 229, 0.18);
}
h2 {
  margin: 0;
  font-family:
    Iowan Old Style,
    Baskerville,
    Times New Roman,
    serif;
  font-size: 1.7rem;
  font-weight: 400;
}
section p {
  max-width: 44rem;
  margin: 0;
  color: #b8c3bd;
  font-size: 0.95rem;
  line-height: 1.8;
}
footer {
  padding: 2rem 0 4rem;
  border-top: 1px solid rgba(242, 239, 229, 0.18);
  color: #718078;
  font-family: monospace;
  font-size: 0.65rem;
  text-transform: uppercase;
}

@media (max-width: 650px) {
  main {
    padding: 4rem 0;
  }
  .updated {
    margin-bottom: 4rem;
  }
  section {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
