html, body {
  margin: 0;
  background: black;
  overflow: hidden;
}
canvas {
  display: block;
}
#maze {
    touch-action: none;
}

#mobile-controls {
  position: absolute;
  bottom: 20px;
  width: 100%;
  display: block;
  padding: 0 20px;
  z-index: 999;
  pointer-events: all;
}
#controls-left, #controls-right {
    display: block;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    bottom: 10px;
}
#controls-right .row {
  display: flex;
  gap: 5px;
}
#mobile-controls .btn {
  width: 110px;
  height: 90px;
  font-size: 40px;
  background-color: #444;
  color: white;
  border: none;
  border-radius: 14px;
  box-shadow: 2px 2px 6px #000;
  margin: 6px;
}

#mobile-controls .btn {
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  touch-action: none;
}

#mobile-controls .btn:active {
  background-color: red;
}

#mobile-controls .btn:hover {
    color: gray;
    background-color: black;
}
div#controls-right {
    right: 50px;
    position: absolute;
    width: 220px;
}

div#controls-left {
    left: 30px;
    width: 50px;
}




#shoot {
    /* position: fixed; */
    /* bottom: 20px; */
    /* right: 20px; */
    /* font-size: 24px; */
    /* padding: 15px; */
    /* border-radius: 10px; */
}
