html, body, .timer-container { height: 100%; }

.timer-container {
	margin-top: -82px;
	cursor: pointer;
}

.timer {
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	margin-top: -10px;
	text-align: center;
}

.blink {
	animation: blink 0.5s steps(2, start) 3;
	-webkit-animation: blink 0.5s steps(2, start) 3;
}

@keyframes blink {
	to {
		visibility: hidden;
	}
}

@-webkit-keyframes blink {
	to {
		visibility: hidden;
	}
}
