* { 
	margin: 0;
	padding: 0;
}

html, body {
	position: absolute;
	width: 100%;
	height: 100%;
	font-family: Helvetica, Arial, sans-serif;
	cursor:default;
}
body {
	background: #FFF;
}
canvas {
	position: absolute;
}

/* about link box */
#about {
	position: absolute;
	font-weight: bold;
	font-size: 16px;
}
/* time box */
#status, #error {
	position: absolute;
	color: #888888;
	font-weight: bold;
}
#status .caption {
	width: 300px;
	height: 30px;
	color: #888888;
	font-size: 12px;
}
#status .time {
	font-size: 20px;
}
#error {
	font-size: 12px;
	width: 300px;
	height: 25px;
	left: 20px;
	top: 20px;
}
/* time box */
#loader {
	position: absolute;
	font-weight: bold;
	width: 150px;
	color: #888888;
	font-size: 11px;
}

#begin {
	-webkit-tap-highlight-color: transparent;
	position: absolute;
	cursor: pointer;
	text-align: center;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	font-size: max(2vh, 18px);
}

#begin.fade-out {
	opacity: 0;
	visibility: hidden;
	transition: visibility .2s, opacity .2s ease-out;
}

a, a:visited, a:hover, a:active {
	text-decoration: none;
	color: #888888;
}

a:hover {
	color: #CCCCCC;
}
@media (hover: none) {
	a:hover {
		color: #888888;
	}
}