@font-face {
	src: url(CustomPixels.ttf);
	font-family: CustomPixels;
}

body, a {
	background-color: black;
	color: white;
	margin: 128px 0;
	text-align: center;
	font-family: CustomPixels;
}

main {
  margin: 16px;
}

h1 {
  font-size: 64px;
}

h2 {
  font-size: 52px;
}

h3, .flexbox{
  font-size: 44px;
}

h4, p {
  font-size: 32px;
}

h5 {
  font-size: 24px;
}

h6 {
  font-size: 16px;
}

.flexbox {
  width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-content: flex-start;
	justify-content: space-evenly;
	background-color: white;
	color: black;
	padding: 8px;
	position: fixed;
	top: 0;
}

.box {
	width: auto;
	height: auto;
	border: 8px black solid;
}

a img {
	vertical-align: middle;
}

a:hover {
	background-color: white;
	color: black;
	}

.box:hover {
	background-color: black;
	color: white;
	border: 8px white solid;
}

.box:hover a {
	background-color: black;
	color: white;
}