
/* ANIMATION #001 - ANIMATED BEE */
.animated_bee{
    width: 100px;
    position: fixed;
    z-index: 3;
    bottom: -100px;
    left: -100px;
    animation: animated_bee 5s;
    animation-delay: 2s;
}

@keyframes animated_bee {
    0%{
        bottom: -100px;
        left: 0;
    }
    50%{
        bottom: 40%;
        left: 20%;
        transform: rotate(20deg);
    }
    100%{
        bottom: 100%;
        left: 100%;
        transform: rotate(40deg);
    }
}