@keyframes bounce{0%,20%,50%,80%,to{transform:translateY(0)}40%{transform:translateY(-30px)}60%{transform:translateY(-15px)}}.bouncing-balls{align-items:center;display:flex;height:100vh;justify-content:center}.ball{animation:bounce 1s ease-in-out infinite;background-color:#425458;border-radius:50%;height:40px;margin:0 10px;width:40px}.ball:nth-child(2){animation-delay:-.4s}.ball:nth-child(3){animation-delay:-.2s}