/*
  Adds smooth scrolling when a user is navigated to an
  anchor on a page.
*/

:root {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion) {
  :root {
    scroll-behavior: auto;
  }
}
