html, body {
	height: 100%;
	display: contents;
	background: #000;
	color: #fff;
	font-family: "Capsule Sans Text",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif;
	font-size: 12px;
}

* {
	box-sizing: border-box;
}

#root {
	height: 100%;
	min-height: 100%;
}

.left {
	float: left;
}
.right {
	float: right;
}
.clear {
	clear: both;
}
a {
	color: rgb(0, 200, 5);
	text-decoration: none;
}
a:hover {
	cursor: pointer;
}
.message {
	font-size: 13px;
	text-align: center;
}
.green {
	color: rgb(0, 200, 5);
}
.red {
	color: rgb(255, 80, 0);
}