/*author: Christian Sievers | sievers.berlin*/
#style {
	text-align: center;
	font-family: 'Courier New', Courier, monospace;
	display: block;
	margin: auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%)
}

.word {
	color: darkgrey;
	font-size: 25px;
	animation: pulse 5s infinite;
}

@keyframes pulse {
	0% {
		color:#ffffff;
	}
	50% {
		color:#105bdc;
	}
	100% {
		color:#ffffff;
	}
}

@media only screen
and (min-device-width : 375px) 
and (max-device-width : 667px) {
	 
	.word {
		display: inline-block;
		font-size: 60px;
	}
}