/*author: Christian Sievers | www.christiansievers.net www.csievers.com*/
#style {
	/*text-align: center;*/
	font-size: 90px;
	font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

@keyframes pulse {
	0% {
		color: rgb(255, 255, 255);
	}

	20% {
		color: rgb(40, 219, 34);
	}

	40% {
		color: rgb(36, 93, 248);
	}
	
	60% {
		color: rgb(220, 230, 25);
	}

	80% {
		color: rgb(220, 44, 28);
	}

	100% {
		color: rgb(255, 255, 255);
	}
}

.lnk1 {
	animation: pulse 10s infinite;
}

.lnk2 {
	animation: pulse 20s infinite;
}