body,
html {
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100%;
  overflow: hidden;

  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

canvas {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  touch-action: none;
  height: 100%;
  width: 100%;
}

canvas:focus {
  outline: none;
}

#root {
  position: relative;
  z-index: 1;
  height: 100%;
}
