/* =============================================================
 * Base reset + body defaults
 * Pairs with tokens.css. Imported once per page.
 * ============================================================= */

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  font-family: var(--font-family);
  font: var(--font-body2-md);
  color: var(--color-gray-900);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: transparent;
  padding: 0;
  color: inherit;
}

ul, ol { list-style: none; padding: 0; margin: 0; }

input, textarea, select {
  font: inherit;
  color: inherit;
}
