body {
    position: relative; 
}

#follower {
    position: fixed;
    pointer-events: none; 
    z-index: 9999; 
}

#circle1 {
    position: absolute;
    -webkit-animation: pulse 2s infinite; 
    animation: pulse 2s infinite;
    background: #D8FF7C;
;
    border-radius: 50%;
    height: 0em;
    width: 0em;
    margin-top: 0em;
    margin-left: 0em;
}

#circle2 {
    position: absolute;
    -webkit-animation: pulse 4s infinite; 
    animation: pulse 4s infinite;
    background: rgba(78, 8, 218, 0.6);
    border-radius: 50%;
    height: 0em;
    width: 0em;
    margin-top: 0em;
    margin-left: 0em;
}

@keyframes pulse {
    0% {
        opacity: 0.2;
        height: 1em;
        width: 1em;
        margin-top: -0.5em;
        margin-left: -0.5em;
    }
    50% {
        opacity: 0.9;
        height: 3em;
        width: 3em;
        margin-top: -1.5em;
        margin-left: -1.5em;
    }
    100% {
        opacity: 0.2;
        height: 1em;
        width: 1em;
        margin-top: -0.5em;
        margin-left: -0.5em;
    }
}
