@charset "utf-8";
/* Simplify width and height calculations */
html{
	box-sizing: border-box;
}
*,*:before,*:after {
	box-sizing: inherit;
}
body {
	margin: 0;
	color: #4B4B4B;
	font-family: source-sans-pro;
	font-style: normal;
	font-weight: 400;
	font-size: 1em;
	background-color: #EFF5F8;
}
#wrapper {
	width: 100%;
	margin: 0 auto;
	max-width: 1000px;
	background-color: white;
}
h1, h2 {
	color: #1E1E1E;
	font-style: normal;
	font-weight: 400;
}
h1 {
	margin-top: 0px;
	margin-bottom: 0px;
	padding-top: 20px;
	padding-bottom: 20px;
	font-size: 2.5em;
	text-align: center;
	text-transform: uppercase;
}
h2 {
	margin-top: 0.5em;
	font-size: 2.25em;
}
a {
	font-weight: bold;
	text-decoration: none;
}
a:link {
	font-weight: bold;
	text-decoration: none;
	color: #F68979;
}
a:visited {
	color: #FF944C;
}
a:hover, a:active, a:focus { 
	/*active is giving me trouble for some reason... Oh ok, I think I figured it out: 
	In Live View, the links stay active so long as they do not lead you somewhere.
	As for the dummy links, they all lead to "visiting" -> #, so that is why they 
	all turn orange after you click a single one when viewing into a browser*/
	color: #7F3300;
	text-decoration: underline;
}
#menulink {
	margin: 0px;
	text-align: center;
	background-color: #1E1E1E;
}
#menulink a {
	color: white;
	text-decoration: none;
	text-transform: uppercase;
	display: block;
	padding-top: 0.1em;
	padding-bottom: 0.1em;
}
#navlinks {
	margin: 0px;
	padding: 0px;
	width: 100%; 
	text-align: center;
	list-style-type: none;
	background-color: #000000;
	background-color: rgba(0,0,0,0.65);
	position: absolute;
	-webkit-transition: all ease-out 0.5s;
	transition: all ease-out 0.5s;
}
#navlinks.displayed {
	/*Unecessary: top: 135px;*/ /*slightly changed the height so the navigation would begin just below the menu link*/
	z-index: 1;
	opacity: 1;
}

#navlinks a {
	display: block;
	padding-top: 10px;
	padding-bottom: 10px;
	color: rgba(255,255,255,1.00);
	font-weight: 400;
	text-transform: uppercase;
	text-decoration: none;
}
#navlinks a:hover, #navlinks a:active, #navlinks a:focus, #navlinks a.thispage {
	color: #F68979;
}

#navlinks.start {
	display: none;
}
#navlinks.collapsed {
	top: -12em;
	opacity: 0;
}


main, aside {
	margin-left: 4%;
	margin-right: 4%;
}
#hero img {
	max-width: 100%;
	display: block;
}
figure  {
	width: 400px;
	max-width: 92%;
	display: block;
	margin-left: auto;
	margin-right: auto;
	padding-top: 20px;
	padding-bottom: 20px;
}
figure img {
	max-width: 100%;
}
figcaption {
	display: block;
	margin-top: 0.5em;
	font-size: 0.75em;
	text-transform: uppercase;
}
.grayscale {
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
}
.grayscale:hover {
	-webkit-filter: grayscale(0%);
	filter: grayscale(0%);
}
#hero p {
	color: #F68979;
	font-weight: 600;
	font-size: 1.5em;
	border-bottom-style: solid;
	text-transform: uppercase;
	padding-left: 4%;
	padding-right: 4%;
	padding-bottom: 20px;
	margin-top: 10px;
	font-family: source-sans-pro;
	font-style: normal;
}
footer {
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: #1E1E1E;
    color: white;
    font-size: 0.8em;
    text-align: center;
}

@media (min-width: 700px){
#menulink {
	display: none;
}
#navlinks {
	max-width: 1000px;
	position: static;
	background-color: transparent;	
	}
#navlinks.collapsed {
	opacity: 1;
}
#navlinks a {
	width: 20%;
	margin-bottom: 20px;
	padding-top: 15px;
	padding-bottom: 15px;
	float: left;
	color: #1E1E1E;
}
#hero p{
	width: 36%;
	padding-top: 20px;
	padding-left: 25px;
	padding-right: 25px;
	position: absolute;
	right: 30px;
	border: 5px solid;
	top: 90px;
	color: #FFFFFF;
}
#hero {
	position: relative;
}
main {
	width: 60%;
}
aside {
	width: 28%;
	margin-left: 0px;
}
main, aside {
	margin-top: 30px;
	margin-bottom: 30px;
	float: left;
	font-size: 0.875em;
}
footer {
	clear: left;
}

}

@media (min-width: 900px){
.floatright {
	float: right;
	margin-right: 0px;
	margin-left: 10px;
}
.floatleft {
	float: left;
	margin-right: 10px;
	margin-left: 0px;
}
}