/* ════════════════════════════════════════════════════════
   Cuboom – Styles
   ════════════════════════════════════════════════════════ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #08081a;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100dvh;
  overflow: hidden;
  touch-action: none;
  user-select: none;
}

canvas {
  display: block;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  cursor: default;
}

/* Hidden container for Material Icons font rasterization */
#icons {
  position: fixed;
  left: -9999px;
  top: 0;
  opacity: 0;
  pointer-events: none;
  font-family: 'Material Icons Round';
  white-space: nowrap;
  line-height: 1;
}

#icons span {
  display: inline-block;
}
