/* Box-model reset + base body styles for the full-visual-replacement
   route. Add smooth-scroll library classes (Lenis etc) here if/when
   the project uses one. */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--theme-font-body);
  color: var(--theme-color-text);
  background: var(--theme-color-background);
  -webkit-font-smoothing: antialiased;
}
