/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Dec 10 2025 | 17:06:32 */
.bouncy-shape {
  animation: bouncy-shape-bounce 1.2s ease-in-out infinite;
}

@keyframes bouncy-shape-bounce {
  0%   { transform: translateY(0) scale(1); }
  30%  { transform: translateY(-10px) scale(1.05); }
  60%  { transform: translateY(0) scale(0.98); }
  100% { transform: translateY(0) scale(1); }
}
