@font-face {
  font-family: "Super Starfish";
  src: url("assets/Super%20Starfish.ttf") format("truetype");
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: #76b42c;
}

body {
  display: grid;
  place-items: center;
  font-family: "Super Starfish", "Arial Rounded MT Bold", sans-serif;
  touch-action: none;
}

#game-shell {
  width: min(100vw, 66.666667vh);
  height: min(100vh, 150vw);
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: #76b42c;
}

#game {
  width: 100%;
  height: 100%;
}

canvas {
  display: block;
  margin: auto;
  width: 100% !important;
  height: 100% !important;
  touch-action: none;
}
