.shine{

     background-image: linear-gradient(
		70deg,
		rgb(185, 185, 185) 45%,
		#f0f0f0 50%,
		rgb(185, 185, 185) 55%
	);
     background-size: 500% 100%;
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
	animation: shine 2s infinite;
}

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