* {
	margin:0;
	padding:0;
	box-sizing:border-box;
	font-family:"Lobster Two";
	font-weight:100;
	
	-webkit-user-select:none;
	-moz-user-select:none;
	-ms-user-select:none;
	user-select:none;
}

body {
	background-color:#000;
	overflow:hidden;
}

canvas {
	position:absolute;
	top:0;
	left:0;
}

#start {
	position:absolute;
	top:50%;
	left:50%;
	width:100px;
	line-height:100px;
	color:#fff;
	transform:translateX(-50%) translateY(-50%);
	text-align:center;
	border:2px solid #fff;
	border-radius:50%;
	display:none;
	cursor:pointer;
	transition:background-color .25s, color .25s;
}

#start:hover {
	background-color:#fff;
	color:#000;
}

#overlay {
	position:absolute;
	top:0;
	left:0;
	background-color:#000;
	opacity:0;
	cursor:none;
}

#plane {
	position:absolute;
	top:-100px;
	right:-100px;
	width:0%;
	display:none;
	cursor:none;
}

#message, #notice {
	position:absolute;
	left:0;
	bottom:10%;
	width:100%;
	text-align:center;
	font-size:5vw;
	color:#fff;
	display:none;
	opacity:.8;
	cursor:none;

	text-shadow:
		-1px -1px 0 #000,
		 1px -1px 0 #000,
		-1px  1px 0 #000,
		 1px  1px 0 #000;
}

#message {
	font-size:5vw;
}

#message.title {
	bottom:50%;
	font-size:16vw;
	transform:translateY(50%);
	opacity:1;
}

#notice {
	bottom:5%;
	font-size:2vw;
	opacity:.5;
}
