:root {
  --paper: #fdfcf7;
  --ink: #1a1a1a;
  --ink-muted: #6b6b6b;
}

html, body {
  margin: 0;
  height: 100%;
  background: var(--paper);
  color: var(--ink);
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.wordmark {
  font-family: 'Architects Daughter', cursive;
  font-size: clamp(4rem, 15vw, 9rem);
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
}

.tagline {
  font-family: 'Architects Daughter', cursive;
  font-size: 1.15rem;
  color: var(--ink-muted);
  margin: 0.5rem 0 2rem;
}

.links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.95rem;
}

.links a {
  color: var(--ink);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--ink-muted);
}

.links a:hover {
  border-bottom-color: var(--ink);
}
