/**
 * Theme Name:     Hello Elementor Child
 * Author:         Elementor Team
 * Template:       hello-elementor
 * Text Domain:	   hello-elementor-child
 * Description:    Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
 */

body {
/* background: linear-gradient(325deg, #FFDF00 0%, #B8860B 100%); */
/* background: linear-gradient(325deg, #02216e -6.38%, #bc27c7 98.89%); */
	
background: linear-gradient(325deg, #B8860B  -6.38%, #FFDF00 98.89%);
}
.page-header {
    display: none;
}
.wpforms-container {
    margin: 0 !important;
}

.wpforms-field {
    padding-top: 0 !important;
}

.wpforms-field label {
    margin-bottom: 5px !important;
}
.shivering-img {
    animation: gentleMovement 2s ease-in-out infinite;
}

@keyframes gentleMovement {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg); 
    }
    25% { 
        transform: translate(-1px, -1px) rotate(0.2deg); 
    }
    50% { 
        transform: translate(1px, 1px) rotate(-0.1deg); 
    }
    75% { 
        transform: translate(-1px, 1px) rotate(0.1deg); 
    }
}