@keyframes bounce {
0% {
    bottom: 5px;
    }
100% {
    bottom: 15px;
    }
}

@keyframes item-animation {
0% {
    opacity: 0;
    }
100% {
    opacity: 1;
    }
}