html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: #e8e6e0;
  overflow: hidden;
  /* Evita que un gest de joc engegui el "pull to refresh" i recarregui la
     pàgina enmig d'una partida. */
  overscroll-behavior: none;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  /* Sense això, mantenir el dit premut obre el menú de selecció de text. */
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}

#game {
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.25);
  touch-action: none;
}
