html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

/* Fond animé occupant toute la fenêtre */
.custom-bg {
  width: 100%;
  height: 100%;
  background: linear-gradient(-45deg, #ff0000, #ff7f00, #ffcc00, #ffd700);
  background-size: 400% 400%;
  animation: movingBG 5s ease infinite;
  display: flex;
  justify-content: center;
  align-items: center;
}
@keyframes movingBG {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Curseur pokeball */
body {
  cursor: url("/assets/images/pokeball.png") 16 16, default;
}
/* Survol => pokeball main */
.discipline-card,
.matiere-card,
.niveau-icon,
.nav-btn,
button,
a,
label,
.dot {
  cursor: url("/assets/images/pokeball-hand.png") 16 16, pointer !important;
}
