/* ═══════════════════════════════════════
   JELLY BOUNCER — MAPI GAMES
   style.css
═══════════════════════════════════════ */

@font-face {
  font-family: 'Fredoka One';
  src: url('fonts/FredokaOne-Regular.ttf') format('truetype');
}

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

body {
  background: #0a0010;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  overflow: hidden;
}

canvas {
  display: block;
  touch-action: none;
  cursor: none;
}
