﻿.gradient-text {
	font-size: 30px;
	font-weight: bold;
	text-transform: uppercase;
	/*background: linear-gradient(-45deg, #e96443, #904e95, #f27121, #ff6a00);*/
	background: linear-gradient( -45deg, darkred, steelblue, red, teal, navy, darkslateblue);
	background-size: 400% 400%;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: gradientShift 5s ease infinite;
}

@keyframes gradientShift {
	0% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}

	100% {
		background-position: 0% 50%;
	}
}
