body, html {

  cursor: none; /* Hide the default cursor */
}

.fire-particle {
  position: absolute;
  border-radius: 50%;
  background-color: orange;
  opacity: 0;
  pointer-events: none; /* Ignore mouse events */
  animation: fadeOut 1s forwards;
}

@keyframes fadeOut {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0);
  }
}
