html, body {
  margin: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #00ffff;
  color: #113;
  font-family: Arial, Helvetica, sans-serif;
  touch-action: none;
  overscroll-behavior: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  user-select: none;
  -webkit-user-select: none;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
}

#fit {
  position: relative;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
}

#stage {
  width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform-origin: 0 0;
  -webkit-tap-highlight-color: transparent;
}

.logo {
  display: block;
  width: 237px;
  height: 68px;
  margin: 8px 0 12px;
  image-rendering: pixelated;
}

#game {
  display: block;
  width: 400px;
  height: 494px;
  background: #00ffff;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  touch-action: none;
  cursor: pointer;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

#game:focus {
  outline: none;
}

.hint {
  display: none;
}
