.Celes {
            font-weight: 500;
            --bg-pos: .2em -.07em;
            position: relative;
            letter-spacing: .02em;
            text-shadow: 0 0 .25em #ffffff72;
            background: url(https://i.ibb.co/1s7cXgS/bg1.webp);
            -webkit-text-fill-color: transparent;
            -webkit-background-clip: border-box, border-box, text;
            background-image: url(https://i.ibb.co/JxzFPjZ/fire.webp), url(https://i.ibb.co/hFjbmzh/bg1.webp), linear-gradient(125deg, rgba(170, 119, 28, 1) 0%, rgba(255, 242, 138, 1) 26%, rgba(246, 194, 35, 1) 37%, rgba(255, 215, 120, 1) 49%, rgba(238, 187, 29, 1) 61%, rgba(170, 119, 28, 1) 100%);
            background-size: 2em, 3em, 10em;
            animation: celestial-animation 6s linear infinite;
        }

        @keyframes celestial-animation {
            0% {
                background-position: 0 0, 0 0, 0 0;
            }
            25% {
                background-position: 2em -1em, 1em 2em, -2em 1em;
            }
            50% {
                background-position: -1em 1em, -2em -1em, 1em -2em;
            }
            75% {
                background-position: 1em -2em, -1em 1em, 2em 1em;
            }
            100% {
                background-position: 0 0, 0 0, 0 0;
            }
        }
		