cube {
width: 50px;
height: 50px;
background: #111;
position: absolute;
bottom: 14%;
left: calc( 50% - 25px );
animation: up 2s infinite;
}
@keyframes up {
0% {
opacity: 0;
}
50% {
opacity: 1;
}
100% {
opacity: 0;
transform: translateY(2rem);
}
}