.shine {
	background: #222 -webkit-gradient(
			linear,
			left top,
			right top,
			from(#222),
			to(#222),
			color-stop(0.5, #fff)
		) 0 0 no-repeat;
	-webkit-background-size: 150px;
	color: rgba(255, 255, 255, 0.5);
	-webkit-background-clip: text;
	-webkit-animation-name: shine;
	-webkit-animation-duration: 3s;
	-webkit-animation-iteration-count: infinite;
	text-shadow: 0 0px 0px rgba(255, 255, 255, 0.8);
}

@-webkit-keyframes shine {
    0%,
    10% {
        background-position: -1000px;
    }
    20% {
        background-position: top left;
    }
    90% {
        background-position: top right;
    }
    100% {
        background-position: 1000px;
    }
}