@keyframes faedropAndGrow {
    0% {
      transform: translateY(0) scale(0.5); /* Start small and at the cursor tip */
      opacity: 1;
    }
    100% {
      transform: translateY(-100px) scale(1); /* Grow to full size and move up */
      opacity: 0; /* Fade out */
    }
  }

  .faestar {
    position: absolute;
    pointer-events: none;
    animation: faedropAndGrow 1s ease-out forwards; /* Apply the upward animation */
    opacity: 1;
  }