#cursor-follower {
    width: 20px;
    height: 20px;
    background-color: rgb(249, 192, 0, 0.5);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: transform 0.1s ease-in-out, opacity 0.5s ease-in-out;
    opacity: 0;
    z-index: 999;
}

.follower-pulse {
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-name: follower-pulse;
    animation-duration: 0.5s;
}

@-webkit-keyframes follower-pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgb(249, 192, 0, 0.5);
    }

    70% {
        -webkit-box-shadow: 0 0 0 50px rgba(90, 153, 212, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(90, 153, 212, 0);
    }
}

@keyframes follower-pulse {
    0% {
        box-shadow: 0 0 0 0 rgb(249, 192, 0, 0.5);
    }

    70% {
        box-shadow: 0 0 0 50px rgba(90, 153, 212, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(90, 153, 212, 0);
    }
}