html, body {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	font-size: 14px;
	background-color: #21252b;
	padding: 0px;
	margin: 0px;
	color: #FFFFFF;
	font-family: 'Open Sans', sans-serif;
	line-height: 1.5;
}

li {
	list-style-type: none;
}

h1 {
	font-size: 24px;
	letter-spacing: 4px;
	text-align: center;
}

h2 {
	font-size: 20px;
	text-align: center;
	color: #00FF00;
	margin-bottom: 40px;
}

hr {
	border: 0;
	height: 1px;
	background-image: linear-gradient(to right, rgba(128, 128, 128, 0), rgba(128, 128, 128, 0.75), rgba(128, 128, 128, 0));
	margin: 20px 0 20px 0;
}

a {
	color: #1890ff;
	text-decoration: none;
}

.ok {
	color: #00FF00;
}

.checking {
	color: #FFFF00;
}

.error {
	color: #FF0000;
}

.password-box {
	padding: 5px;
	border-bottom: 2px solid #1890ff;
	background-color: #333333;
}

#header {
	top: 0px;
	background-color: #222222;
	border-bottom: 2px solid #1890ff;
}

#content {
	flex-grow: 1;
}

#status {
	width: 50vw;
	min-width: 300px;
	max-width: 600px;
	margin: 100px auto 0 auto;
	padding: 40px;
	border: 2px dashed #444444;
	background-color: #222222;
}

#status > div:nth-of-type(1) {
	font-size: 16px;
	margin-bottom: 20px;
}

#status > div:nth-of-type(2) {
	font-size: 14px;
	color: #CCCCCC;
}

#bucket-speed {
	font-size: 14px;
}

#details {
	color: #FFFF00;
}

footer {
	height: 80px;
	background-color: #222222;
	border-top: 2px solid #444444;
	background-image: url("logo.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: 60px;
	padding: 10px;
}

footer  a {
	color: #FFFFFF;
}

#footer-left {
	float: left;
	height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

#footer-right {
	float: right;
	height: 100%;
	text-align: right;
}

#footer a:hover {
	text-decoration: underline;
}