html, body {
  width: auto;
  height: 100%;
  margin: 0px;
  padding: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column
}

body {
  overflow: hidden;
  touch-action: none;
  background: black;
}

canvas {
  object-fit: contain;
  max-height: 100%;
  max-width: 100%;
  margin: auto;
  display: inline-block;
  horizantal-align:  middle;
  vertical-align: middle;
  touch-action: none;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  max-height: 100%;
}