/*
 Theme Name: Hello Elementor Child
 Theme URI: https://example.com
 Description: Child theme for Hello Elementor
 Author: Your Name
 Template: hello-elementor
 Version: 1.0.0
*/

/* Floating animation code start*/
selector {
    animation: floatingMove 3s ease-in-out infinite !important;
}

@keyframes floatingMove {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-25px); }
    100% { transform: translateY(0px); }
}
/* Floating animation code end*/



