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

body {
  background: #050210;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  overflow: hidden;
  font-family: 'Nunito', 'Arial Rounded MT Bold', Arial, sans-serif;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
}

#wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
}

#gameCanvas {
  display: block;
  cursor: pointer;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  /* shadow to make it pop on desktop */
  box-shadow: 0 0 60px rgba(180, 80, 255, 0.4), 0 0 120px rgba(100, 50, 200, 0.2);
  border-radius: 40px;
}

/* prevent iOS bounce */
html, body { overscroll-behavior: none; }
