html,
body {
  margin: 0;
  padding: 0;
  background: black;
}
#unity-container {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  /* aspect-ratio: 9 / 16; */
}

#unity-canvas {
  touch-action-delay: none;
  touch-action: none;
  -ms-touch-action: none;
  width: 100%;
  height: 100%;
  background: black;
}

@media only screen and (max-width: 600px) {
  #unity-container {
    aspect-ratio: unset;
    width: 100%;
    height: 100%;
  }
}
