:root {
  --ink: #1a1a1a;
  --muted: #666;
  --accent: #0b5cff;
  --bg: #fdfdfd;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 18px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  line-height: 1.6;
}

main {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.hero {
  max-width: 32rem;
  text-align: center;
}

h1 {
  margin: 0;
  font-size: 2.25rem;
  letter-spacing: -0.02em;
}

.lede {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.contact {
  margin: 2rem 0 0;
  font-size: 0.95rem;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
