
/* THE BASICS */
body {
	margin: 0px;
	font-family: Open Sans;
	font-size: 16px;
	color: white;
}
h1 {
	font-family: 'Permanent Marker', cursive;
	font-size: 50px;
	line-height: 60px;
}
h2 {
	font-size: 28px;
	font-weight: bold;
	line-height: 28px;
}
	.h2 {
		font-size: 26px;
		font-weight: bold;
		line-height: 26px;
	}
a {
	text-decoration: none;
	color: white;
}

.gray {
	background-color: #404040;
	color: white;
}
.orange {
	background-color: #ED7D31;
	color: white;
}
.yellow {
	background-color: #FFC000;
	color: #404040;
}
.blue {
	background-color: #20609D;
	color: white;
}
.green {
	background-color: #17A271;
	color: white;
}
.pad {
	padding: 10px;
}
.outer {
	float: left; 
	width: 100%;
}	
.button {
	float: left;
	text-align: center;
	background-color: #FFC000;
	color: white;
	font-weight: bold;
	padding: 10px;
	padding-left: 20px;
	padding-right: 20px;
	border: 2px solid #FFC000;
	cursor: pointer;
}
	.button:hover {
		transition-duration: 0.5s;
		border: 2px solid white;
	}
.logo {
	width: 300px;
	cursor: pointer;
}

/* HOMEPAGE CLASSES */
.menu {
	float: right; 
	width: 70px;
	height: 50px;
	border: 2px solid #404040;
	color: #404040;
	cursor: pointer;
	text-align: center;
	margin-top: 50px;
	line-height: 50px;
	font-weight: bold;
}
	.menu:hover {
		transition-duration: 0.5s;
		background-color:#404040;
		color: white;
	}

.header {
	margin: auto;
	position: relative; 
	width: 1000px;
}
.container {
	margin: auto;
	position: relative; 
	width: 1000px;
}
.footer {
	margin: auto;
	position: relative; 
	width: 1000px;
}
.breaker {
	float: left; 
	clear: both;
	margin-top: 50px; 
}
.clicker {
	float: left; 
	margin-left: 200px;
}
.three_block {
	float: left; 
	width: 318px;
	margin-right: 10px;
	border: 2px solid white;
}
	.three_block:hover {
		transition-duration: 0.5s;
		background-color: white; 
		color: #404040;
		cursor: pointer;
	}
.header_color {
	position: fixed; 
	background-color: white;
	border: solid #404040;
	border-width: 0px 0px 2px 0px;
	z-index: 5;

}
.fixed_header_spacer {
	float: left; 
	width: 100%; 
	height: 150px;
}
	
@media only screen and (max-width: 1000px) {
	body {
		font-size: 30px;
	}
	.breaker {
		margin-top: 75px;
	}
	h1 {
		font-size: 70px;
		line-height: 70px;
	}
	ol {
		margin-left: 25px;
	}
	.h2 {
		font-size: 40px;
		line-height: 40px;
	}
	.pad {
		padding: 20px;
	}
	.menu {
		width: 120px;
		height: 100px;
		margin-bottom: 50px;
		text-align: center;
		margin-top: 50px;
		line-height: 80px;
		font-weight: bold;
	}
	.logo {
		width:400px;
		margin-top: 20px;
	}
	.button {
		color: white;
		font-weight: bold;
		padding: 15px;
		padding-left: 30px;
		padding-right: 30px;
	}
	.header { 
		width: 96%;
	}
	.header_color {
		background-color: white;
	}
	.container {
		width: 96%;
	}
	.footer {
		width: 96%;
	}
	.clicker {
		width: 96%;
		margin-left: 2%;
	}
	.three_block {
		float: left; 
		width: 96%;
		margin-left: 2%;
		margin-bottom: 10px;
	}
}	
/* MENU CLASSES */
.menu_frame {
	display: none;
}
.menu_filter {
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 10;
	background-color: black;
	opacity: 0.95;
}
.menu_options {
	position: fixed;
	z-index: 20;
	border: 2px solid white;
	top: 100px;
	width: 40%;
	left: 30%;
	margin: auto;
}
.menu_button {
	float: left; 
	clear: both;
	margin-bottom: 20px;
	cursor: pointer;
}
	.menu_button:hover {
		background-color: white; 
		color: black;
	}
.giraffe {
	position: fixed;
	right: 20px; 
	bottom: 0px;
	height: 400px;
	z-index: 15;
}
.close_menu {
	float: left; 
	clear: both;
	margin-bottom: 30px;
}
@media only screen and (max-width: 1000px) {
	.menu_options {
		width: 80%;
		left: 10%;
	}
	.menu_button {
		margin-bottom: 80px;
		font-size: 50px;

	}
	.close_menu {
		margin-bottom: 100px;
		font-size: 50px;
	}
}