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

html {
  height: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, Cantarell, "Noto Sans", sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  line-height: 1.5;
  color: #1a1a1a;
  background: #f6f5f3;
}

.wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
}

.title {
  margin: 0 0 0.35em;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.subtitle {
  margin: 0;
  color: #5c5c5c;
  font-size: 1rem;
}

.lede {
  margin: 0.75rem 0 0;
  max-width: 22rem;
  color: #5c5c5c;
  font-size: 0.9375rem;
}

.home-link {
  margin-top: 1.75rem;
  color: #1a1a1a;
  font-size: 0.9375rem;
  text-underline-offset: 0.2em;
}

.home-link:hover {
  opacity: 0.75;
}

.home-link:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 0.2em;
}

@media (prefers-color-scheme: dark) {
  body {
    color: #ececec;
    background: #121212;
  }

  .subtitle,
  .lede {
    color: #9a9a9a;
  }

  .home-link {
    color: #ececec;
  }
}
