@charset "UTF-8";

@font-face {
    font-family: Bebas;
    src: url('../fonts/BebasNeue.otf') format('opentype');
}

html, body, h1, h2, h3, p, span {
	padding: 0px;
	margin: 0px;
	-webkit-margin-before: 0em;
	-webkit-margin-after: 0em;
}
/*Scrollbar stuff */

::-webkit-scrollbar {
    width: 5px;
}
::-webkit-scrollbar-track {
    background-color: black;
}
::-webkit-scrollbar-thumb {
    background-color: #2c2d2e;
}
::-webkit-scrollbar-thumb:hover {
    background-color: #fff;
}
::-webkit-scrollbar-corner {
  background: black;
}

/*Overall Styling */

body {
	background-image: url("../img/Pixels_Pattern.png");
	background-repeat: repeat;
}

h1 {
	font-family: "Bebas", sans-serif;
	font-size: 3em;
}

h2 {
	font-family: "Lato", sans-serif;
	font-weight: 300;
	font-size: 1.3em;
	letter-spacing: 2px;
	text-transform: uppercase;
	text-align: center;
	color: gray;
	-webkit-margin-after: 1.5em;
	-webkit-margin-before: -1em;
}

h3 {
	font-family: "Lato", sans-serif;
	font-weight: 300;
	font-size: 1.3em;
	letter-spacing: 2px;
	text-transform: uppercase;
}

p {
	font-family: "Lato", sans-serif;
	font-weight: 300;
	line-height: 1.65em;
	-webkit-margin-after: 1em;
}

a, a:active {
	color: #03989c;
	text-decoration: none;
	border-bottom: 2px solid transparent;
	font-family: "Lato", sans-serif;
	font-weight: 900;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

a:hover {
	border-bottom: 2px solid #03989c;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

/* Lightbox */

#imgcontainer	{
	width: 100%;
	height: 100%;
	top: 0px;
	background-color: rgba(0, 0, 0, .75);
	position: fixed;
	z-index: 100;
	display: none;
}

#imgcontainer img {
	position: absolute;
	left: 50%;
	width: 800px;
	max-height: 90%;
	margin-left: -400px;
	margin-top: 50px;
}

/*Menu Stuff */

header {
	width: 800px;
	height: 50px;
	margin: 0 auto;
	margin-bottom: 105px;
	color: white;
	text-transform: uppercase;
}

nav ul {
	display: inline-block;
	margin-left: -37px;
	list-style: none;
}

nav li {
	float: left;
}

nav a, nav a:hover {
	text-transform: uppercase;
	font-weight: 300;
	color: white;
	border-bottom: none;
}

nav li a {
	display: inline-block;
	padding: 15px 14px 16px 14px;
	background-color: transparent;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

nav li a:hover {
	color: #03989c;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

#menu-icon {
	position: relative;
	float: right;
	width: 50px;
	height: 50px;
	background: url(../img/menu.png) center;
	display: none;
}

/* Body Content */

#container {
	width: 800px;
	height: auto;
	margin: 0 auto;
	-webkit-box-shadow: 0px 0px 10px 3px rgba(0,0,0,0.5);
	-moz-box-shadow: 0px 0px 10px 3px rgba(0,0,0,0.5);
	box-shadow: 0px 0px 10px 3px rgba(0,0,0,0.5);
}

#toplogo {
	width: 100%;
	height: 300px;
	background-color: rgba(1, 123, 144, 0.65);
	text-align: center;
	color: white;
}

#toplogo img {
	width: 400px;
	margin-top: 53px;
	margin-bottom: 17px;
}

#content {
	width: 700px;
	height: auto;
	padding: 100px 50px 50px 50px;
	background: white;
	color: black;
}

#content h1 {
	text-align: center;
	margin-bottom: 30px;
}

.singlewide {
	width: 100%;
	margin: 20px 0px 30px 0px;
}

.doublewide {
	width: 48%;
	margin: 20px 1% 30px 1%;
	float: left;
}

/* Footer */

footer {
	width: 100%;
	height: 40px;
	padding: 30px 0px 20px 0px;
	margin-bottom: 50px;
	background: #014c73;
	text-align: center;
	position: relative;
}

footer img {
	display: inline-block;
	margin: 0% 1% 0% 1%;
	height: 25px;
	position: relative;
}

footer a:hover {
	border-bottom: 2px solid transparent;
}

/* Pseudo Elements */

::-webkit-input-placeholder {
   color: rgba(255,255,255,0.3);
}
:-moz-placeholder { /* Firefox 18- */
   color: rgba(255,255,255,0.3);  
}
::-moz-placeholder {  /* Firefox 19+ */
   color: rgba(255,255,255,0.3);  
}
:-ms-input-placeholder {  
   color: rgba(255,255,255,0.3);  
}

/* Media Queries */

@media (max-width: 800px) {

	#container, header {
		width: 100%;
	}

	header {
		margin: 0;
	}

	#toplogo img {
		width: 300px;
	}

	#content {
		width: 90%;
		padding: 70px 5% 70px 5%;
	}

	#imgcontainer img {
		left: 0px;
		margin-left: 0px;
		width: 100%;
		max-height: auto;
	}

	footer {
		margin-bottom: 0px;
	}

	#menu-icon {
		display:inline-block;
	}

	nav ul {
		display: none;
		position: absolute;
		background: black;
		width: 100%;
		top: 34px;
		z-index:4;
	}

	nav li {
		text-align: right;
		width: 100%;
		border-bottom: 1px solid #2B2B2B;
	}
  
}
}

