.txt-gradient div {
	background: linear-gradient(90deg, #0090f7 0%, #ba62fc 35%, #f2416b 69%, #f55600 100%);
	background-size: 400% 100%;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	color: transparent;
	animation: pulse-gradient 3s ease-in-out infinite;
}

@keyframes pulse-gradient {
	0%, 100% {
		background-position: 0% 50%;
		filter: brightness(1);
	}

	50% {
		background-position: 100% 50%;
		filter: brightness(1.2);
	}
}