html,
body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  height: 100%;
  background: #03060c;
}

#root {
  height: 100%;
  overflow: hidden;
  background-color: #03060c;
  display: flex;
  touch-action: none;
}

canvas {
  image-rendering: pixelated;
  display: block;
  /* The game draws its own pixel cursor */
  cursor: none;
}

* {
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}

#no-webgpu {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f1e6c8;
  font: 16px/1.5 monospace;
  text-align: center;
  padding: 24px;
}
/*$vite$:1*/