html, body {

	font-family: 'JetBrains Mono', sans-serif;
	font-family: 'JetBrains Mono NL', sans-serif;
	background: white;
	color: black;
	line-height: 1.2rem;   
	margin: 0px;
	padding: 0px;

	display: flex;
	justify-content: center;
	align-items: stretch;
	height: 100vh;

	
	/*
	background-image: url('noise.png');
	background-repeat: repeat;
	background-size: 50px 50px; 
	background-blend-mode: overlay;*/
}

table {
  border: 3px solid white;
  border-collapse: collapse;
}

td, th {
	border: 3px solid white;
	border-collapse: collapse;
	padding: 15px;
	text-align: center;
}

a {
	color: white;
	text-decoration: none;
}

a:hover {
	color: red;
}

nav {
	margin-top: 20px;
}

nav ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
nav li {
  display: inline-block;
  vertical-align: middle;
  padding-right: 20px;
  font-weight: 800;
}

hr {
	background-color: white;
	height: 2px;
	border: none;
}

main {
	margin-top: 10px;
}

main ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
main li {
  display: inline-block;
  vertical-align: middle;
  padding-right: 20px;
}

p {
	max-width: 600px;
	line-height: 1.6;
	font-size: .8rem;
}

.vertical {
  writing-mode: vertical-rl;
  text-orientation: upright;
}

.wrapper {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.container {
  background-color: black;
  color: white;
  width: 60vw; 
  min-height: 100vh;
  padding-top: 10px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0px;

  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.content {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: stretch;
}

footer {
	text-align: center;
	padding: 10px;
	background-color: black;
	color: white;
	margin-top: auto;
}



