#custom-cursor {
  width: 32px;
  height: 32px;
  background-image: url('styles/autumn_leaves.png');
  background-size: contain;
  background-repeat: no-repeat;
  position: fixed;
  pointer-events: none; /* so it doesn't block clicks */
  z-index: 99999;
  transform: translate(-50%, -50%);
}

* {
  cursor: none !important; /* hide the real cursor */
}