:root {
  color-scheme: light;
  --background: #1b1b1b;
  --ink: #f5f3ee;
  --muted: #b4b2af;
  --focus: #cfcac1;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--background);
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--background);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", Times, serif;
  text-rendering: geometricPrecision;
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(6rem, 18vh, 11rem) 1.5rem 9rem;
}

.intro {
  width: min(100%, 1020px);
}

.intro p,
.text-link {
  margin: 0;
  font-size: clamp(1.08rem, 1.38vw, 1.42rem);
  line-height: 1.35;
  letter-spacing: 0;
}

.intro p + p {
  margin-top: 3.4rem;
}

.text-link {
  display: inline-flex;
  align-items: baseline;
  gap: 0.3em;
  margin-top: 3.2rem;
  color: inherit;
  text-decoration: none;
}

.text-link:hover {
  color: var(--focus);
}

.text-link:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 0.25rem;
}

em {
  font-style: italic;
}

.site-mark {
  position: fixed;
  left: 50%;
  bottom: clamp(1.8rem, 5.2vh, 3.3rem);
  transform: translateX(-50%);
  width: 4.5rem;
  height: 4.5rem;
  opacity: 0.9;
}

.site-mark img {
  display: block;
  width: 100%;
  height: 100%;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 760px) {
  .page {
    justify-content: flex-start;
    padding: 5.25rem 1.4rem 8rem;
  }

  .intro {
    transform: none;
  }

  .intro p,
  .text-link {
    font-size: clamp(1.22rem, 5.5vw, 1.55rem);
    line-height: 1.28;
  }

  .intro p + p {
    margin-top: 2.8rem;
  }

  .text-link {
    margin-top: 2.6rem;
  }
}
