html, body {
	margin: 0;
	padding: 0;
	position: relative;

	font-size: 14px;
	font-family: Isidora-Regular;
	font-weight: normal;
	font-style: normal;

	background-color: #001A33;
	color: #ffffff;
}

a {
	color: inherit;
}

.main {
	max-width: 300px;
	margin: 0px auto;
	padding: 20px;
	
	text-align: center;
	
	display: flex;
	flex-direction: column;
}

.main .claim-1 {
	margin-bottom: 0;
	font-size: 1em;
}

.main .claim-2 {
	font-size: 1.7em;
	margin-top: 0;
}

.server {
	background-color: #fff;
	color: #001A33;
	padding: 20px;
	margin-bottom: 20px;
	border-radius: 10px;
	text-align: left;
	cursor: pointer;
}

.server div.headline {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.server div.latency {
	margin-top: 20px;
	display: none;
}

.server span.status {
	display: inline-block;
	width: 20px;
	height: 10px;
	border-radius: 5px;
	margin-right: 5px;
}
.server span.status.green {
	background-color: green;
}
.server span.status.orange {
	background-color: orange;
}
.server span.status.red {
	background-color: red;
}

.server span.right {
	margin-left: auto;
}

table.list {
	width: 100%;
}
table.list th {
	text-align: center;
}