body {
  cursor: none;
}

/* layer cursore sopra tutto */
#cursor {
  position: fixed;
  top: 0;
  left: 0;

  width: 20px;
  height: 20px;
  border-radius: 50%;

  background: rgb(0, 94, 255);

  pointer-events: none;
  transform: translate(-50%, -50%);

  z-index: 999999;

  mix-blend-mode: difference;

  transition: width 0.15s ease, height 0.15s ease;
}

a, button, .img-link {
  cursor: none !important;
}

/* hover */
#cursor.active {
  width: 60px;
  height: 60px;
}