body,
body * {
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: top;
	box-sizing: border-box;	
}

html, body {
	background-color: #222;
	color: #fff;
	text-align: center;
	font-family: sans-serif;
	
	position: relative;
	min-height: 100vh;
}

.content {
	max-width: 600px;
	width: 50%;
	
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
}

.content img {
	display: block;	
	max-width: 225px;
	margin: 0 auto 40px;
}

.content p {
	text-transform: uppercase;
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 20px;
}

.content p:last-of-type {
	margin-bottom: 40px;
}

.content p:last-child {
	margin-bottom: 0;
}
.content .error{
	color: #f00;
}
.content .status {
	border-width: 2px;
	border-style: solid;
}

.content .status.ok {
	border-color: #62860a;
	color: #62860a;
	background-color: #a0c546;
}

.content .status.down {
	border-color: #53180e;
	color: #ddd;
	background-color: #d22205;
}

.content .status.problem {
	border-color: white;
	color: #111;
	background-color: orange;
}

.content .status {
	line-height: 3;
}

.faq{
	text-transform: none;
	font-weight: normal;
	padding: 50px;
	line-height: 20px;
	font-size: 14px;
}

.faq strong{
	display: block;
	margin-bottom: 5px;
	margin-top: 20px;
	font-size: 16px;
}

.update,
.content .update{
	background-color: white;
	color: black;
	padding: 40px;
	font-weight: normal;
	text-transform: none;
}

@media screen and (max-width: 767px) {
	.content {
		width: 80%;
	}
	.content p {
		font-size: 12px;
	}
}
