html, body {
	margin: 0;
	padding: 0;
	font-family: monospace;
}

body {
	background-color: #0B0A0C
}

header {
	background-image: url('header.png'), linear-gradient(to bottom, #211F24, #0B0A0C);
	background-repeat: no-repeat;
	height: 220px;
}

header div {
	font-size: 4em;
	padding: 0.5em 0 0.1em 1.6em;
	line-height: 95%;
	color: white;
}

@media (min-width: 1024px) {
	header div {
		font-size: 8em;
		padding: 0.5em 0.2em 0.5em 200px;
	}
}

nav {
	float: right;
	font-size: 1.5em;
	margin-right: 1em;
}

nav a:link {
	color: white;
  text-decoration: none;
}

nav a:visited {
	color: white;
  text-decoration: none;
}

nav a:hover {
	color: white;
  text-decoration: underline;
}

nav a:active {
	color: white;
  text-decoration: underline;
}

nav li {
	display: inline-block;
	color: white;
}

main {
	display: flex;
	flex-flow: row wrap;
	width: 100%;
	gap: 16px;
	justify-content: center;
	margin-top: 16px;
}

main img {
	width: 360px;
}

main img:hover {
	filter: grayscale(100%);
}

main iframe {
	flex: 0 0 90%;
}
