    .lil-fella {
        position: fixed;
        bottom: 20px;
        width: 60px;
        height: 60px;
        z-index: 999999;
        pointer-events: none;
        background-size: contain;
        background-repeat: no-repeat;
        animation: schmoove 20s linear 25s 1;
    }

    @keyframes schmoove {
    0% { 
        bottom: -5px;
        left: -100px; 
        transform: scaleX(1) scale(1);
        background-image: url('https://surprisegmg.neocities.org/temp/ezgif-23af6e1689204f27%20450.gif');
        opacity: 1;
    }
    40% { 
        bottom: -5px;
        left: 45%;
        transform: scaleX(1) scale(1);
        background-image: url(https://surprisegmg.neocities.org/temp/ezgif-23af6e1689204f27%20450.gif);
        opacity: 1;
    }

    40.1% { 
        bottom: 110px;
        transform: scaleX(1) scale(4.8);
        background-image: url('https://surprisegmg.neocities.org/temp/gaze.png');
        opacity: 1;
    }
    85% { 
        bottom: 110px;    
        left: 45%;
        transform: scaleX(1) scale(4.85);
        background-image: url('https://surprisegmg.neocities.org/temp/gaze.png');
        opacity: 1;
    }

    85.1% { 
        bottom: 100px;
        transform: scaleX(1) scale(6.5);
        background-image: url(https://surprisegmg.neocities.org/temp/ezgif-23af6e1689204f27%20450.gif);
        opacity: 1;
    }
    100% { 
        left: 200%; 
        transform: scaleX(1) scale(6.5);
        opacity: 1;
    }
}