/* ==========================================================================
   Global styles, linked by every page: base typography/background,
   plus the site-wide mobile scrollbar hide. ============================= */

/* Fanwood Text is loaded once via <link> in each page's own <head>
   (faster than @import, which blocks on an extra round trip). */

body {
  background: #fdfdfd;
  font-family: 'Fanwood Text', serif;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

/* Hide the scrollbar site-wide on mobile (every page links this
   file, so this is the single place to control it). */
@media (max-width: 1100px) {
  html,
  body {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  html::-webkit-scrollbar,
  body::-webkit-scrollbar {
    display: none;
  }
}
