/* Eliminem marges i padding per a tot el body */
body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #004d66; /* Cel turquesa fosc */
  font-family: Arial, sans-serif;
}

/* Canvas ocupa tota la finestra */
canvas {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

/* Opcional: text flotant (paraules) */
.text {
  position: absolute;
  color: yellow;
  font-size: 24px;
  font-weight: bold;
  pointer-events: none; /* perquè no interfereixi amb el mouse */
}
