:root {
  --ink: #171717;
  --muted: #666666;
  --faint: #9a9a9a;
  --paper: #ffffff;
  --line: #e8e8e8;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: ui-monospace, "SFMono-Regular", "SF Mono", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 15px;
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration-color: rgba(23, 23, 23, 0.28);
  text-underline-offset: 3px;
}

a:hover {
  text-decoration-color: currentColor;
}

a:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 4px;
}

.page {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100svh;
  padding: 52px 56px;
}

.site-header {
  margin-bottom: 24px;
  max-width: 640px;
  width: 100%;
}

.wordmark {
  display: block;
  height: auto;
  max-width: 236px;
  width: min(52vw, 236px);
}

.note {
  max-width: 640px;
  width: 100%;
}

h1,
p {
  margin: 0;
}

h1 {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.65;
  margin-bottom: 22px;
}

p {
  color: var(--muted);
  margin-bottom: 18px;
}

.contact-links {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 34px;
  padding-top: 18px;
}

.contact-links a {
  color: var(--muted);
}

@media (max-width: 720px) {
  body {
    font-size: 14px;
  }

  .page {
    align-items: flex-start;
    padding: 88px 24px 34px;
  }

  .site-header {
    margin-bottom: 22px;
  }

  .wordmark {
    width: min(62vw, 210px);
  }

  .contact-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}
