:root {
  --bg: #fafaf9;
  --fg: #111111;
  --muted: #11111199;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

main {
  text-align: center;
  max-width: 40rem;
}

h1 {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem 0;
}

.tagline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--muted);
  margin: 0 0 2.5rem 0;
}

.contact {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  margin: 0;
  color: var(--muted);
}

.contact a {
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: color 150ms ease;
}

.contact span {
  margin: 0 0.75em;
}

.contact a:hover,
.contact a:focus-visible {
  color: var(--fg);
}
