@font-face {
	font-family: OpenDyslexic;
	src: url('../opendyslexic/OpenDyslexic-Regular.otf') format('opentype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: OpenDyslexic;
	src: url('../opendyslexic/OpenDyslexic-Italic.otf') format('opentype');
	font-weight: normal;
	font-style: italic;
}

@font-face {
	font-family: OpenDyslexic;
	src: url('../opendyslexic/OpenDyslexic-Bold.otf') format('opentype');
	font-weight: bold;
	font-style: normal;
}

@font-face {
	font-family: OpenDyslexic;
	src: url('../opendyslexic/OpenDyslexic-BoldItalic.otf') format('opentype');
	font-weight: bold;
	font-style: italic;
}

h1 {
	font-size: 28px;
}

h2 {
	font-size: 22px;
}

body {
	background-color: #212121;
	font-family: Courier, monospace;
	color: antiquewhite;
	margin: 2%;
}

p {
	font-size: 18px;
}

a {
	color: antiquewhite;
}

a:hover {
	color: floralwhite;
}

main {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-rows: 0.5fr 0.5fr;
}

main .title h1 {
	grid-column-start: 1;
	grid-column-end: 1;
	grid-row-start: 1;
	margin-left: 2%;
}

main .title h1 a {
	text-decoration: none;
}

main .title h2 {
	grid-column-start: 1;
	grid-column-end: 1;
	grid-row-start: 2;
	font-weight: normal;
	margin-left: 2%;
}

main .menu {
	grid-column-start: 3;
	grid-column-end: 3;
	grid-row-start: 1;
	padding-right: 5%;
	position: relative;
	padding-left: 10vw;
}

main .menu .menu_content {
	display: none;
  	position: absolute;
  	background-color: #212121;
  	min-width: 130px;
  	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  	padding: 12px 16px;
}

.menu:hover .menu_content {
	display: block;
}

.menu .menu_text {
	text-decoration: underline;
}

.menu:hover h1 {
	color: floralwhite;
}

.menu_content a {
	text-decoration: none;
}


main hr {
	grid-column-start: 1;
	grid-column-end: 4;
	grid-row-start: 2;
	border: 0;
	height: 0;
  	border-top: 1px solid rgba(0, 0, 0, 0.1);
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	margin: -2px 0 0 0;
}

.footer {
	padding-top: 100px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 0.5fr 0.5fr;
}

.footer hr {
	grid-column-start: 1;
	grid-column-end: 3;
	grid-row-start: 1;
	border: 0;
	height: 0;
  	border-top: 1px solid rgba(0, 0, 0, 0.1);
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	margin: -2px 0 0 0;
}

.footer .footer_left {
	grid-row-start: 2;
	grid-column-start: 1;
	float: left;
}

.footer .footer_right {
	text-align: right;
	grid-row-start: 2;
	grid-column-start: 2;
}

.container {
	display: flex;
	flex-wrap: wrap;
}

.column {
	flex: 25%;
	max-width: 25%;
}

.column img {
	vertical-align: middle;
	width: 100%;
}


.about_container {
	margin-left: 1%;
	display: flex;
	flex-wrap: wrap;
}

.about_container .paragraph {
	flex: 50%;
	max-width: 50%;
}

.about_container .images {
	flex: 45%;
}

.about_container .images img {
	width: 75%;
	float: right;
}


@media screen and (max-width: 800px) {
	.column {
		flex: 50%;
		max-width: 50%;
	}
}

@media screen and (max-width: 600px) {
	.column {
		flex: 100%;
		max-width: 100%;
	}
}