:root {
  --ink: #1c1c1e;
  --muted: #6b6b70;
  --paper: #fafaf8;
  --accent: #2f5d8a;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
}

body {
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
  line-height: 1.6;
  padding: 2rem 1.5rem;
  text-align: center;
}

main {
  max-width: 34rem;
}

h1 {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

p {
  font-size: 1.0625rem;
  color: var(--muted);
}

.contact {
  margin-top: 2.5rem;
  font-size: 0.9375rem;
}

a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}

a:hover {
  opacity: 0.75;
}
