* {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
	vertical-align: bottom;
	list-style: none;
	font-family: "Roboto Mono", sans-serif;
	padding: 0;
	margin: 0;
	line-height: 100%;
}
body, html {
	height: 100%;
}
table {
	table-layout: fixed;
	width: 100%;
	border-collapse: collapse;
}
th, td {
	padding-bottom: 4px;
	text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.25);
}
tr:last-child th, tr:last-child td {
	padding-bottom: 0;
}
th {
	font-weight: normal;
	text-align: left;
	width: 70px;
}
td {
	text-align: right;
}
h1 {
	color: rgba(25, 50, 25, 1);
	background: rgba(80, 200, 80, 1);
	padding: 4px;
	text-align: center;
	font-size: 10px;
	font-weight: bold;
	margin-bottom: 8px;
	box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.25);
}
#capacity {
	width: 100%;
	display: flex;
	justify-content: flex-start;
	margin-top: 8px;
}
#capacity li {
	margin-right: 1px;
	width: 5px;
	height: 8px;
	background: rgba(80, 200, 80, 0.5);
}
#capacity li.on {
	background: rgba(80, 200, 80, 1);
}
#capacity li:last-child {
	margin-right: 0;
}
#world {
	display: flex;
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: center;
}
#background, #start {
	position: absolute;
	width: 100%;
	height: 100%;
	background: #535559;
	top: 0;
	left: 0;
}
#background {
	z-index: 0;
}
#start {
	z-index: 6;
}
#screen {
	width: 100%;
	color: rgba(80, 200, 80, 1);
	font-size: 10px;
	padding: 12px;
	border-radius: 4px;
	z-index: 1;
	mix-blend-mode: color-dodge;
}
#scanline {
	position: absolute;
	mix-blend-mode: hard-light;
	top: 0;
	z-index: 3;
	opacity: 0.1;
	width: 100%;
	height: 100%;
}
#scanline li {
	height: 1px;
	width: 100%;
}
#scanline li:nth-child(2n) {
	background: rgba(120, 240, 120, 1);
}
#overlay {
	width: 100%;
	height: 75%;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.25) 20%, rgba(0, 0, 0, 0.25) 80%, rgba(0, 0, 0, 0) 100%);
	position: absolute;
	mix-blend-mode: hard-light;
	top: 999px;
	left: 0;
	z-index: 4;
}
#shadow {
	background: radial-gradient(ellipse farthest-corner, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.5) 100%);
	box-shadow: inset 2px 2px 8px rgba(0, 0, 0, 0.5);
	position: absolute;
	mix-blend-mode: overlay;
	top: 0;
	left: 0;
	z-index: 5;
	width: 100%;
	height: 100%;
}
#hilight {
	z-index: 7;
	width: 100%;
	height: 100%;
	position: absolute;
	padding: 4px;
	top: 0;
	left: 0;
	mix-blend-mode: multiply;
}
#hilight div {
	background: linear-gradient(170deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 100%);
	border-radius: 4px;
	width: 100%;
	height: 100%;
}
#emboss {
	width: 170px;
	position: relative;
	border-width: 4px;
	border-style: solid;
	border-top-color: rgba(0, 0, 0, 0.5);
	border-left-color: rgba(0, 0, 0, 0.25);
	border-right-color: rgba(255, 255, 255, 0.3);
	border-bottom-color: rgba(255, 255, 255, 0.6);
	border-radius: 8px;
	overflow: hidden;
}
#center {
	text-align: center;
}
#monitor {
	background: #e5d19f;
	padding: 16px;
	border-radius: 12px;
	box-shadow: inset 2px 2px 0 1px rgba(255, 255, 255, 0.5), inset -2px -2px 0 1px rgba(0, 0, 0, 0.1);
	margin-bottom: 16px;
}
#led-area {
	display: flex;
	justify-content: flex-end;
	margin-top: 12px;
	padding-right: 4px;
}
#led {
	width: 8px;
	height: 8px;
	border-radius: 100%;
	background: #535559;
	box-shadow: -1px -1px 0 rgba(0, 0, 0, 0.25), 1px 1px 0 rgba(255, 255, 255, 0.5);
}
#led.on {
	background: #00d308;
}
#led.off {
	background: #b00000;
}
#links a {
	font-size: 12px;
}