:root {
  color-scheme: light;
  --ink: #161616;
  --paper: #f7f4ef;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.82), transparent 34rem),
    var(--paper);
  color: var(--ink);
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.temporary-page {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 32px;
}

.logo-lockup {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.logo-mark {
  display: grid;
  width: clamp(72px, 12vw, 112px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 8px;
  background: var(--ink);
  color: var(--paper);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 760;
  line-height: 1;
}

.logo-text {
  display: grid;
  gap: 2px;
  font-size: clamp(1.45rem, 4vw, 2.6rem);
  font-weight: 760;
  line-height: 1;
}

.logo-text span:last-child {
  color: #56504a;
  font-size: 0.56em;
  font-weight: 620;
}

.not-found-page {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 32px;
  text-align: center;
}

.not-found-page h1 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 7vw, 4rem);
}

.not-found-page a {
  border-bottom: 1px solid var(--ink);
  font-weight: 700;
}

@media (max-width: 520px) {
  .logo-lockup {
    flex-direction: column;
    text-align: center;
  }
}
