body {
	position: absolute;
	overflow: hidden;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	background-color: #000;
	font-family: Helvetica, Arial, sans-serif;
	box-sizing: border-box;
	user-select: none;
}

.gl-wrapper {
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	display: flex;
	align-items: center;
	justify-content: center;
}

#gl-canvas {
	position: relative;
	top: 0px;
	left: 0px;
}

#viz-canvas {
	position: absolute;
	bottom: 0px;
	right: 0px;
}

.menu-button {
	position: absolute;
	top: 0px;
	left: 0px;
	text-transform: lowercase;
	font-size: 0.8em;
	color: #c8c8c8;
	background-color: rgba(0, 0, 0, 0.3);
	padding: 8px 18px 13px 13px;
	opacity: 0;
}

.menu-button span {
	font-size: 1.2em;
}
.menu-button:hover {
	cursor: pointer;
	color: #fff;
}
.menu {
	position: absolute;
	color: #c8c8c8;
	top: 0px;
	left: 0px;
	background-color: rgba(0, 0, 0, 0.3);
	width: 160px;
}

.menu .close {
	position: absolute;
	left: 10px;
	top: 10px;
	font-size: 0.8em;
}

.menu .close:hover {
	cursor: pointer;
	color: #fff;
}

.menu p {
	padding: 7px 0px 0px 10px;
	margin: 0;
	letter-spacing: 0.02em;
	font-size: 0.8em;
	text-transform: lowercase;
	cursor: default;
}

.menu p:first-of-type {
	margin-top: 30px;
}

.menu p.small {
	color: #808080;
	font-size: 0.7em;
}

.menu ul {
	list-style-type: none;
	padding: 0;
	margin: 6px 0 6px 0;
}

.menu li {
	position: relative;
	text-transform: lowercase;
	padding: 4px 0px 4px 10px;
	font-size: 0.8em;
	letter-spacing: -0.01em;
	text-indent: 0.7em;
	cursor: default;
}

.menu li.selected:before {
	content: ' ';
	position: absolute;
	width: 8px;
	height: 100%;
	top: 0px;
	left: 0px;
	background-color: #ffffff;
}

.menu li:not(.selected):hover {
	background-color: rgba(255, 255, 255, 0.2);
	cursor: pointer;
}

.start {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.start button {
	border: 1px solid #fff;
	text-transform: lowercase;
	font-size: 1.5em;
	font-weight: 400;
	padding: 8px 16px;
	background-color: #fff;
	letter-spacing: 0.05em;
	cursor: pointer;
}

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

.stats {
	position: absolute;
	bottom: 0px;
	left: 0px;
}
