/* TINKER TUSSLE - the page is just a dark room around the crisp pixel canvas */
* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
  width: 100%;
  height: 100%;
  background: #14101c;
  overflow: hidden;
}

#frame {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#game {
  /* JS sizes this to the largest integer multiple of 480x270 that fits */
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  cursor: default;
  background: #14101c;
}
