@font-face {
  font-family: "Roboto Slab";
  src: url(/assets/fonts/RobotoSlab-VariableFont_wght.ttf) format("truetype");
}

html, body {
  /* Disable overscrolling */
  overscroll-behavior-y: none;
  overscroll-behavior-x: none;
  background-color: black;
  overflow: hidden;

  /* Global font */
  font-family: 'Roboto Slab';
  font-weight: 400;
}

body {
  margin: 0;
  position: absolute;
  width: 100%;
  height: 100%;

  /* Disable highlighting */
  -webkit-tap-highlight-color: transparent;

  /* Disable text selection */
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */

  /* Disable panning and scrolling on IOS >13 */
  touch-action: none;
}

canvas {
  display: block;
  z-index: 1;
}