body {
  margin: 0;
  font-family: sans-serif;
}

main {
  display: grid;
  width: 100svw;
  height: 100svh;
}

#controls {
  position: absolute;
  top: 0;
  left: 0;
  background: #white;
  border: thin solid;
}

canvas {
  width: 100%;
  height: 100%;
  background: #c2b280;
  touch-action: none;
}

#debug {
  position: absolute;
  bottom: 0;
  background: white;
}

#buttons {
  touch-action: manipulation;
  position: absolute;
  bottom: 1em;
  width: 100%;
  display: grid;
  justify-content: center;
  gap: 50px;
}