/* ============================================================
   Global Base Styles
   ============================================================
   Tokens are defined in css/tokens.css (loaded first).
   This file provides only resets and base element styles.
   ============================================================ */

/* ============================================================
   Reset
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  font-family: var(--font-family-primary);
  color: var(--color-text-body);
  background: var(--white);
}

a {
  color: var(--color-accent-primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
