@keyframes customBounce{0%,20%,50%,80%,to{transform:translateY(0)}40%{transform:translateY(-20px)}60%{transform:translateY(-10px)}}.bounce-with-delay{animation:customBounce 2s infinite;animation-delay:3s}.ripple-effect{height:150px;width:400px;margin:auto;border:5px solid;border-radius:50%;animation:ripple 2s infinite;animation-delay:4s}@keyframes ripple{0%{transform:scale(0);opacity:1}50%{transform:scale(1);opacity:0}to{transform:scale(1);opacity:0}}