#gameratio {
  max-width: var(--game-width);
  margin: 0 auto;
}

#game {
  width: var(--game-width);
  height: var(--game-height);
  background-color: rgba(128,128,128,0.33);
  border-radius: 10px;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

#gameratio:-webkit-full-screen { width: 100%; height: 100%; max-width: none; background-color: black; }
#gameratio:-moz-full-screen { width: 100%; height: 100%; max-width: none; background-color: black; }
#gameratio:-ms-fullscreen { width: 100%; height: 100%; max-width: none; background-color: black; }
#gameratio:-fullscreen { width: 100%; height: 100%; max-width: none; background-color: black; }
#gameratio.maximized {
  max-width: none;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 100dvh;
  background-color: black;
}
