<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
/*
http://colorschemedesigner.com/csd-3.5/#3B40whW6p6q6q
*/

/* All elements */

* {
	margin: 0;
	padding: 0;
	font-size: 24px;
	font-family: Consolas, monaco, monospace;
	color: rgba(200, 200, 200);
}

/* Basic structure */

body {
	display: flex;
	min-height: 100vh;
	flex-direction: column;
	justify-content: space-between;
	background: #0D161F;
}

header, footer {
	display: flex;
	justify-content: center;
	background: rgba(0, 0, 0, 0.2);
}

section {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	padding: 40px 0;
	margin: 0 13%;
}

footer {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 13px;
	font-size: 75%;
	color: rgba(255, 255, 255, 0.3);
}

/* Components */

h1, h1 a {
	padding: 20px 0;
	text-decoration: none;
	font-size: 40px;
	letter-spacing: 10px;
	text-shadow: 0px 1px rgba(255, 255, 255, 0.15), 0px 2px rgba(255, 255, 255, 0.15), 0px 3px rgba(255, 255, 255, 0.15);
}

button {
	margin-top: -3px;
	margin-bottom: 4px;
	padding: 10px 15px;
	text-transform: uppercase;
	color: #696F75;
	background: #1D2A37;
	border: none;
	box-shadow: 0 7px 0px 1px rgba(0, 0, 0, 0.4);
	-webkit-box-shadow: 0 7px 0px 1px rgba(0, 0, 0, 0.4);
	border-radius: 5px;
	cursor: pointer;
	transition: 0.05s all ease;
	-webkit-transition: 0.05s all ease;
}

button:hover, button.ready {
	margin-top: 4px;
	margin-bottom: -3px;
	color: #A9B1B9;
	box-shadow: 0 0px 2px 1px rgba(0, 0, 0, 0.4) inset;
	-webkit-box-shadow: 0 0px 2px 1px rgba(0, 0, 0, 0.4) inset;
	text-shadow: 0px 1px 2px #666;
}

button:active, button.ready {
	background: #1B2C13;
}

footer div {
	text-align: center;
	margin-bottom: 5px;
}

footer div:last-child {
	margin-bottom: 0;
}

footer div, footer div * {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.5);
}

footer div a {
	margin-right: 20px;
	text-decoration: none;
	opacity: 0.5;
}

footer div a:last-child {
	margin-right: 0;
}

footer div a:hover {
	opacity: 0.8;
}
</pre></body></html>