html, body, canvas {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	overflow: hidden;

	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

canvas {
	z-index: 1;
}

#hit-count {
	position: absolute;
	top: 0;
	left: 0;
	font-size: 60vw;
	color: white;
	opacity: 0.2;
	width: 100%;
	height: 90%;
	text-align: center;
	line-height: 100%;
	z-index: -1;
	font-weight: bold;
}

#timer {
	position: absolute;
	top: 0;
	left: 0;
	font-size: 7vw;
	line-height: 7vw;
	padding: 15px;
	color: white;
	width: auto;
	height: auto;
	z-index: -1;
}
#timer .glyphicon {
	font-size: 5vw;
}

.overlay {
	width: 100%;
	height: 100%;
	padding: 30px;
	margin: 0;
	overflow: hidden;
	display: none;
	z-index: 5;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(255, 255, 255, 0.85);
}

.overlay .message {
	display: none;
}

body {
	background: #fcd6d6; /* Old browsers */
	background: -moz-linear-gradient(top, #fcd6d6 0%, #fca4a4 45%, #ff8989 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, #fcd6d6 0%, #fca4a4 45%, #ff8989 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, #fcd6d6 0%, #fca4a4 45%, #ff8989 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fcd6d6', endColorstr='#ff8989', GradientType=0); /* IE6-9 */
}