html, body {
	height: 100vh;
	max-height: 100vh;
	overflow: hidden;
}
body {
	font-family: 'Roboto', sans-serif;
	color: #333;
	font-weight: 100;
	font-size: 0.8rem;
	background-color: #000;

	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
}
body > .errorMessage {
	color: #f00;
	font-weight: bold;
}
.invis {
	display: none;
}
.statsbox {
	position: absolute;
	bottom: 70px;
	right: 30px;
	color: #fff;
	border-radius: 6px;
	box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.5);
	background-color: #666;
	padding: 10px 15px;
}

.javaScript-not-enabled {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;

	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;

	text-align: center;
}
body.no-javascript .chatWindow,
body.yes-javascript .javaScript-not-enabled {
	display: none;
}

input, select {
	outline: none;
}

