.elementor-330 .elementor-element.elementor-element-110052e{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-330 .elementor-element.elementor-element-9938642{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-24e742b *//* Apply the galaxy background and container styles */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;  /* Ensure container takes at least the full viewport height */
    flex-direction: column;
    background: radial-gradient(circle, rgba(50, 0, 100, 1), rgba(0, 0, 0, 1)); /* Galaxy background */
    position: relative;
    overflow: hidden;
    padding: 20px;
    box-sizing: border-box;
}

/* Snowflakes container for animation */
.snowflakes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
    animation: snowfall 10s linear infinite;
}

/* Snowflakes styling with random sizes and delays */
.snowflakes div {
    position: absolute;
    background-color: white;
    border-radius: 50%;
    opacity: 0.8;
    pointer-events: none;
    animation: fall linear infinite;
}

.snowflakes div:nth-child(1) {
    width: 4px;
    height: 4px;
    animation-duration: 6s;
    animation-delay: -1s;
    left: 5%;
}

.snowflakes div:nth-child(2) {
    width: 5px;
    height: 5px;
    animation-duration: 7s;
    animation-delay: -2s;
    left: 10%;
}

.snowflakes div:nth-child(3) {
    width: 6px;
    height: 6px;
    animation-duration: 9s;
    animation-delay: -3s;
    left: 20%;
}

.snowflakes div:nth-child(4) {
    width: 3px;
    height: 3px;
    animation-duration: 5s;
    animation-delay: -1s;
    left: 30%;
}

.snowflakes div:nth-child(5) {
    width: 7px;
    height: 7px;
    animation-duration: 10s;
    animation-delay: -4s;
    left: 40%;
}

.snowflakes div:nth-child(6) {
    width: 4px;
    height: 4px;
    animation-duration: 8s;
    animation-delay: -2s;
    left: 50%;
}

.snowflakes div:nth-child(7) {
    width: 5px;
    height: 5px;
    animation-duration: 6s;
    animation-delay: -5s;
    left: 60%;
}

.snowflakes div:nth-child(8) {
    width: 6px;
    height: 6px;
    animation-duration: 7s;
    animation-delay: -3s;
    left: 70%;
}

.snowflakes div:nth-child(9) {
    width: 3px;
    height: 3px;
    animation-duration: 9s;
    animation-delay: -6s;
    left: 80%;
}

.snowflakes div:nth-child(10) {
    width: 8px;
    height: 8px;
    animation-duration: 11s;
    animation-delay: -7s;
    left: 90%;
}

/* Keyframes for random falling snowflakes */
@keyframes fall {
    0% {
        transform: translateY(-100px);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh); /* Move snowflakes from top to bottom */
        opacity: 0.5; /* Fade out as it falls */
    }
}

/* Content styling */
.content {
    z-index: 1;  /* Ensure text appears above snowflakes */
    text-align: center;
    max-width: 800px; /* Optional: Limiting the width for better readability */
    line-height: 1.6;
    font-size: 1.2rem;
    color: white;
    padding: 10px;
    box-sizing: border-box;
}

/* Make the text responsive */
@media (max-width: 768px) {
    .content {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .content {
        font-size: 0.9rem;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-30e43e3 */* {
            padding: 0;
            margin: 0;
            font-family: sans-serif;
        }

       .text {
            
            height: 20vh;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden; /* Ensure the content doesn't overflow */
        }

        .text {
            text-align: center;
            width: 100%;
        }

        .text span {
            display: block;
            white-space: nowrap; /* Prevent text from wrapping to the next line */
        }

        .text1 {
            color: red;
            font-size: 20px;
            font-weight: 700;
            letter-spacing: 8px;
            
            position: relative;
            animation: text1 3s infinite;
            max-width: 90%;
            word-wrap: break-word;
            transform-origin: center; /* Prevents the text from shifting */
        }

        @keyframes text1 {
            0% {
                color: #F4C430;
                letter-spacing: 8px;
            }

            30% {
                letter-spacing: 25px;
                color: #F4C430;
            }

            85% {
                letter-spacing: 8px;
                color: green;
            }

            100% {
                color: green;
                letter-spacing: 8px;
            }
        }

        /* Mobile (up to 600px) */
        @media (max-width: 600px) {
            .text1 {
                font-size: 15px;
                letter-spacing: 3px;
                width: 80%;
                max-width: 100%;
            }
        }

        /* Tablet (601px to 900px) */
        @media (max-width: 900px) {
            .text1 {
                font-size: 20px;
                letter-spacing: 6px;
                width: 90%;
                max-width: 100%;
            }
        }

        /* Large Screens */
        @media (min-width: 901px) {
            .text1 {
                font-size: 70px;
                letter-spacing: 8px;
            }
        }/* End custom CSS */