@import url('https://fonts.googleapis.com/css?family=Roboto+Mono&display=swap');

html {
  /*scroll-behavior: smooth;*/
  padding: 0;
  margin: 0;
  overscroll-behavior-y: contain;
}

html {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  -moz-user-select: -moz-none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}


body {
  background-color: #111;
  color: #fff;
  font-family: "Roboto Mono";
  font-size: 14px;
  text-align: center;
  overscroll-behavior-y: contain;
}

canvas {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  -webkit-transform3d: translate(0,0,0);
  -moz-transform3d: translate(0,0,0);
  transform3d: translate(0,0,0);
}