* {
	--bkcolor: #030303;
}

body {
	font-family: Consolas;
	background-color: var(--bkcolor);
	margin: 0;
}

.header {
	background-color: #1a1a1a;
	text-align: center;
	font-size: 26px;
	border-bottom: 2px solid #333;
	height: 100%;
}

.header h1 {
	color: white;
	margin: 0;
	padding-top: 10px;
	padding-bottom: 10px;
}

.subtitle {
	background-color: #0F0F0F;
  color: #888;
  width: 100%;
  margin: 0;
  text-align: center;
  font-size: 0.9rem;
  padding-top: 5px;
  padding-bottom: 5px;
  border-bottom: 1px solid #333;
  font-style: italic;
}

.center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 80vh;
}

.center a {
  margin: 10px 0;
  font-size: 32px;
  color: white;
}

.center a:hover {
	color: lightgray;
}