/* Lab site layout. Per site on purpose: the two sites share tokens and never
   share rules, so neither can restyle the other by accident. It starts as a copy
   of the curator layout and is free to diverge without touching that site. */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: var(--space-4);
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: var(--step-0);
  line-height: var(--line-body);
  -webkit-font-smoothing: antialiased;
}

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

h1 {
  margin: 0 0 var(--space-3);
  font-size: var(--step-3);
  line-height: var(--line-tight);
  font-weight: 600;
  letter-spacing: -0.02em;
}

p {
  margin: 0;
  color: var(--fg-muted);
}
