/* Mason's Games — fullscreen, no scrolling, toddler-proof */
* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #0b1020;
  /* Kill every native touch gesture: scroll, pinch-zoom, double-tap-zoom */
  touch-action: none;
  -ms-touch-action: none;
  overscroll-behavior: none;
  /* No text selection / callout / highlight when little hands mash the screen */
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}

#stage {
  display: block;
  width: 100vw;
  height: 100vh;
  touch-action: none;
}
