:root {
  --bg: #0c0d0f;
  --fg: #eceae4;
  --muted: #9a958b;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; height: 100%; }
body {
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  background: var(--bg);
  color: var(--fg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

main { max-width: 22rem; }

h1 {
  font-size: clamp(40px, 7vw, 64px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0 0 16px;
}

.lede {
  font-size: 18px;
  line-height: 1.45;
  color: var(--muted);
  margin: 0 0 28px;
}

.mail {
  color: var(--fg);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  font-size: 16px;
}
.mail:hover { color: var(--muted); }
