:root {
  --page-bg: #f4efed;
}
html,
body,
#game {
  background-color: var(--page-bg);
  overscroll-behavior: none;
  touch-action: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
}
body {
  color: #8b5968;
  -webkit-font-smoothing: antialiased;
  font-family: Inter, Nunito, ui-rounded, SF Pro Rounded, Avenir Next, Arial,
    sans-serif;
}
canvas {
  touch-action: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-user-drag: none;
  -webkit-tap-highlight-color: transparent;
  display: block;
}
