﻿

.jump {
    animation: jump 0.1s ease;
}

@keyframes jump {
    from {
        top: 80%;
    }

    to {
        top: 52%;
    }
}

.move-right {
    animation: move-right 0.5s ease;
}
@keyframes move-right {
    from {
        left: 0%;
    }

    to {
        left: 40%;
    }
}

.move-left {
    animation: move-left 0.5s ease;
}
@keyframes move-left {
    from {
        left: 40%;
    }

    to {
        left: 0%;
    }
}