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

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-hover); text-decoration: underline; }

button { font-family: inherit; }
input, select, textarea { font-family: var(--font-body); }

::selection { background: var(--g-sel); }

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
