@keyframes FadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes Bounce {
    0%,
    to {
        transform:translateY(-25%);
        animation-timing-function:cubic-bezier(.8,0,1,1)
    }
    50% {
        transform:none;
        animation-timing-function:cubic-bezier(0,0,.2,1)
    }
}

.animate-bounce {
    animation: Bounce 1s infinite;
}