@keyframes animation-1 {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(1000deg);
    }
}

@keyframes animation-2 {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(20px);
    }
}

.aniamtion-key-1 {
    position: relative;
    animation-name: animation-1;
    animation-duration: 24s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: cubic-bezier(0.59, 0.59, 1, 1);
}

.aniamtion-key-2 {
    position: relative;
    animation-name: animation-2;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: cubic-bezier(0.59, 0.59, 1, 1);
}