html, body {
	background-color: black;
	color: white;
	font-family: monospace;
	height: 100%;
	margin: auto;
}

body {
	align-items: center;
	display: flex;
	justify-content: center;
}

#orrery, #starfield {
	position: absolute;
	height: 100%;
	width: 100%;
}

#orrery {
	z-index: 1;
}

#starfield {
	opacity: 0.5;
	z-index: 0;
}

.nojavascript, #loading {
	text-align: center;
	height: 100px;
}

.nojavascript {
	font-size: 2em;
	margin-top: 100px;
}

#loading {
	display: none;
	font-size: 3em;
	position: absolute;
}

#infobutton {
	display: none;
	font-weight: bold;
	position: absolute;
	text-align: center;
	z-index: 99;
}

#info {
	opacity: 0;
	padding: 0 20px 20px 20px;
	position: absolute;
	transition: opacity 0.5s ease-out;
	z-index: 98;
}

#info #infoclose {
	text-align: right;
}

#infobutton, #infoclose a {
	text-align: center;
}

#infoclose a {
	display: inline-block;
}

#infobutton:hover, #infoclose a:hover {
	border-color: white;
}