/*
 * Sat Apr 18, 2020 -two
 */
:root {
	--color-bg: #151b20;
	--color-text: #657180;
}
body {
	background: var(--color-bg);
	color: #ccc;
	margin: 0;
	padding: 0;
	overflow: hidden;
	font-size: 50px;
}
.center-container {
	display: flex;
	width: 100vw;
	height: 100vh;
	text-align: center;
}
.center-item {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	width: 100%;
}
.message,
.thing {
	color: var(--color-text);
}
.message {
	font-family: 'Arial', sans-serif;
	font-size: 1em;
	opacity: 0.5;
}
.thing {
	font-family: 'Arial Narrow', 'Arial', sans-serif;
	font-size: 2em;
	font-weight: bold;
}
.dimmed {
	opacity: 0.5;
}
.relevant {
	font-style: italic;
}
