body {
	margin: 0;
	padding: 0;
	background-color: #AAAAAA;
	color: #fff;
	font-family: Monospace;
	font-size: 24px;
	line-height: 24px;
	overscroll-behavior: none;
}

button {
	cursor: pointer;
	text-transform: uppercase;
}

#info {
	position: absolute;
	top: 0px;
	width: 100%;
	padding: 10px;
	box-sizing: border-box;
	text-align: center;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
	background-color: #000;
	opacity: .7;
	z-index: 1;
}

#details {
	position: absolute;
	top: 44px;
	width: 100%;
	padding: 10px;
	font-size: small;
	box-sizing: border-box;
	text-align: center;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
	background-color: #000;
	opacity: .7;
	z-index: 1;
}


a, button, input, select {
	pointer-events: auto;
}

.lil-gui {
	z-index: 2 !important;
}

@media all and ( max-width: 640px ) {
	.lil-gui.root { 
		right: auto;
		top: auto;
		max-height: 50%;
		max-width: 80%;
		bottom: 0;
		left: 0;
	}
}

#overlay {
	position: absolute;
	font-size: 16px;
	z-index: 2;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	background: rgba(0,0,0,0.7);
}

