/* css/styles.css - Fullscreen canvas, cursor hidden during gameplay, no-select, overflow hidden */

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

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #0D1117;
  cursor: default;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

canvas {
  display: block;
  width: 100%;
  height: 100%;
}

/* Hide cursor during gameplay (set via JS class) */
body.gameplay canvas {
  cursor: none;
}
