:root {
  --ink: #111;
  --paper: #fff;
  --type-title: 1.25rem;
  --type-body: 1rem;
  --leading-title: 1.3;
  --leading-body: 1.5;
  --weight: 400;
  --radius-control: 6px;
  --hit: 2.5rem;
  --focus-ring: 2px;
}

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html,
body {
  min-height: 100%;
  background: var(--paper);
  color: var(--ink);
  font-family: Geist, system-ui, sans-serif;
  font-size: var(--type-body);
  font-weight: var(--weight);
  line-height: var(--leading-body);
}

h1,
h2 {
  font-size: var(--type-title);
  font-weight: var(--weight);
  line-height: var(--leading-title);
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}
