@keyframes moveGradient {
	50% {
		background-position: 100% 0;
	}
}

.meteorite {
	background: linear-gradient(0deg, #000000, #8800ff, #8800ff, #000000);
    background-size: 1000% 1000%;
    background-position: 0 100%;
    animation: moveGradient 10s alternate infinite;
    color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition-duration: 0s !important;
}

.stardust {
	background: linear-gradient(60deg, #00ffff, #0000ff, #8800ff, #0000ff);
    background-size: 300% 300%;
    background-position: 0 100%;
    animation: moveGradient 5s alternate infinite;
    color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition-duration: 0s !important;
}