:root {
  --foreground: #E5E5E5;
  --background: #08080C;
	--highlight: #E91E63;
	--font-size: 20pt;
}

body { 
	background-color: var(--background);
	color: var(--foreground);

	font-family: monospace;
	font-size: var(--font-size);
}

ul {
  list-style: none;
  padding: 0px;
}

ul li:before {
  content: '> ';
}

ul li:hover {
	color: var(--highlight);
	cursor: pointer;
}

a {
  color: inherit;
  text-decoration: inherit;
}

.clock {
	color: var(--highlight);
}

.centreBox {
	text-align: left;
	font-size: var(--font-size);

	margin: 0;
	position: absolute;

	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
