html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
  color: #fff;
}

#loading {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

#container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 629px;
  height: 424px;
  min-width: 200px;
  max-width: 90vw;
  resize: horizontal;
  overflow: hidden;
}

#canvas {
  display: block;
  width: 100%;
  height: 100%;
  image-rendering: pixelated;
  touch-action: none;
}

@font-face {
  font-family: "TerminusTTF";
  src: url("https://www.ossftw.com/terminus-ttf-4.49.3/TerminusTTF-4.49.3.ttf") format("truetype");
}

*,
*::before,
*::after {
  font-family: "TerminusTTF" !important;

  -webkit-font-smoothing: none !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;

  text-rendering: optimizeSpeed !important;
}