/* CSS Document */

/*
	---- Colors ----
Box-shadow: #154454;
Header Nav Text: #B7E5FF;
*/

/*
	---------------------------------------------------------------------------------------------------------------------
	--------------------------------------- CSS Style RESET -------------------------------------------------------------
	---------------------------------------------------------------------------------------------------------------------
*/

html, body, ul, li, a, fieldset, h2 {
	padding: 0;
	margin: 0;
}

body {
	font-size: 16px;
}


/*
	---------------------------------------------------------------------------------------------------------------------
	--------------------------------------- Site Wide Styles ------------------------------------------------------------
	---------------------------------------------------------------------------------------------------------------------
*/

body {
	background: url(../_images/Body_Background.png);
}

nav {
	z-index: 1000;
}

.top-div {
	padding-top: 5em;
	max-width: 1080px;
	margin: auto;
}

h1 {
	font-family: 'Chewy', cursive;
	letter-spacing: 5px;
	font-size: 4em;
	text-transform: uppercase;
	text-align: center;
	color: #154454;
}

h2 {
	font-family: 'Chewy', cursive;
	letter-spacing: 5px;
	font-size: 2em;
	text-transform: uppercase;
	margin-bottom: 0.5em;
}

.project_div {
	padding: 2em;
	background: #9BBDBB;
	border-radius: 2em;
	box-shadow: 2px 2px 3px 3px #154454;
	width: 80%;
	margin: auto auto 2em auto;
	text-align: center;
}




/*
	---------------------------------------------------------------------------------------------------------------------
	-------------------------------------- Header Nav Styles ------------------------------------------------------------
	---------------------------------------------------------------------------------------------------------------------
*/

#Mobile_Nav {
	display: none;
}

nav ul, nav li, nav a {
	text-decoration: none;
	list-style: none;
	list-style-type: none;
	display: inline-block;
}

nav {
	font-family: 'Wendy One', sans-serif;
	font-size: 1.75em;
	letter-spacing: 2px;
	width: 100%;
	text-align: center;
	padding-top: 0.25em;
	padding-bottom: 0.25em;
	background: url(../_images/Nav_Background_Image.png);
	box-shadow: 0 3px 3px 3px #154454;
	position: fixed;
	top: 0;
}

nav ul a {
	display: block;
	padding:  0.5em 1em;
	color: #B7E5FF;
}

nav #TopLevel_Links {
	position: relative;
}

nav #TopLevel_Links ul {
	position: absolute;
	left: 0;
	top: 2.07em;
	display: none;
	border: solid 2px #003D6F;
	background: url(../_images/Nav_Background_Image.png);
}

nav #TopLevel_Links li {
	display: block;
	border-bottom: solid 2px #003D6F;
}

#TopLevel_Links ul li:last-child {
	border: none;
}

#TopLevel_Links:hover ul {
	display: block;
}

nav a:hover, nav > ul > li:hover > a {
	color: aqua;
	text-decoration: underline;
}

#TopLevel_Links ul li a:hover {
	background-color: rgba(211,211,211,0.40);
}

.active, .active:hover {
	color: white;
	text-decoration: underline;
	cursor: default;
}


/*
	---------------------------------------------------------------------------------------------------------------------
	--------------------------------------- Contact Styles --------------------------------------------------------------
	---------------------------------------------------------------------------------------------------------------------
*/

.Contact_Fieldset {
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	font-weight: bold;
	padding: 2em;
	background: #9BBDBB;
	border-radius: 2em;
	box-shadow: 2px 2px 3px 3px #154454;
	width: 80%;
	margin: auto auto 2em auto;
}

#Social_Media{
	width: 30%;	
}

#Span_Linkedin, #Span_Email {
	display: block;
	text-align: center;
}

#Span_Linkedin {
	margin-bottom: 1em;
}

#Span_Linkedin img {
	width: 64px;
}

.Contact_Span {
	display: block;
	margin-top: 1em;
}

.Contact_Span:first-of-type {
	margin-top: 0;
}

.Contact_Span:last-of-type {
	text-align: center;
	margin-top: 2em;
}

.Contact_Span label {
	display: inline-block;
	width: 10%;
	margin-bottom: 0.5em;
}

.Contact_Span .contact_error {
	width: 50%;
	color: red;
}

.Contact_Span .hide_error {
	display: none;
}

.Contact_Span .show_error {
	display: inline-block;
}

.Contact_Span input, .Contact_Span textarea {
	padding: 0.5em;
	border: solid 2px #154454;
	border-radius: 0.5em;
	box-shadow: 1px 1px 1px #154454;
}

.Contact_Span input {
	width: 60%;
}

.Contact_Span textarea {
	resize: none;
	width: 98.5%;
	height: 4.5em;
}

.Contact_Span button {
	width: 6em;
	height: 2.5em;
	font-weight: bold;
	font-size: 1.5em;
	border-radius: 1em;
	border: 2px solid #154454;
	box-shadow: 2px 2px 1px 1px #154454;
}

.Contact_Span button:last-child {
	margin-left: 1em;
}

.Contact_Span button:hover {
	background-color: #5698FF;
	color: #FFF;
}

#Contact_Submission_Div {
	text-align: center;
}

/*
	---------------------------------------------------------------------------------------------------------------------
	--------------------------------------- Project Styles --------------------------------------------------------------
	---------------------------------------------------------------------------------------------------------------------
*/
.project_description {
	font-family: Consolas, "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", Monaco, "Courier New", "monospace";
	margin-bottom: 1.5em;
}

video {
	width: 100%;
}

.project_div img {
	width: 100%;
}

.project_links_div {
	margin-bottom: 1.5em;
}

.project_links {
	display: block;
	width: 100%;
}

.one_img_span, .two_img_span, .three_img_span {
	display: block;
	margin-bottom: 1em;
}

.one_img_span:last-of-type, .two_img_span:last-of-type, .three_img_span:last-of-type {
	margin-bottom: 0;
}

.one_img_span img {
	border: 2px solid #154454;
	box-shadow: 2px 2px 1px 1px #154454;
	width: 100%;
}

.two_img_span img, .three_img_span img {
	margin: auto 0.5em;
	border: 2px solid #154454;
	box-shadow: 2px 2px 1px 1px #154454;
}

.two_img_span img {
	width: 47%;
}

.three_img_span img {
	width: 30%;
	background: #CCC;
}



/*
	---------------------------------------------------------------------------------------------------------------------
	--------------------------------------- Home Page Styles ------------------------------------------------------------
	---------------------------------------------------------------------------------------------------------------------
*/
.home_div {
	width: 100%;
	margin: auto;
	text-align: center;
}

.home_div img {
	border: 2px solid #154454;
	box-shadow: 2px 2px 1px 1px #154454;
	background: #CCC;
	width: 400px;
	height: 300px;
}

.top_div {
	margin-top: 2em;
}

.middle_div {
	margin-top: -5em;
}

#middle_right_img {
	margin-left: 8em;
}

.bottom_div {
	margin-top: -5em;
}




@media only screen and (max-width: 1100px) {
	/*
		---------------------------------------------------------------------------------------------------------------------
		--------------------------------------- Contact Styles --------------------------------------------------------------
		---------------------------------------------------------------------------------------------------------------------
	*/
	.Contact_Span label {
		width: 20%;
	}
	

	
	
	

/* end of media max-width: 1100px */
}




@media only screen and (max-width: 1080px) {

	/*
		---------------------------------------------------------------------------------------------------------------------
		--------------------------------------- Home Page Styles ------------------------------------------------------------
		---------------------------------------------------------------------------------------------------------------------
	*/

	.home_div img {
		width: 300px;
		height: 200px;
	}

	.top_div {
		margin-top: 2em;
	}

	.middle_div {
		margin-top: -2.5em;
	}

	#middle_right_img  {
		margin-left: 10em;
	}

	.bottom_div {
		margin-top: -2.5em;
	}




/* end of media max-width: 1080px */
}





@media only screen and (min-width: 815px) and (max-width: 950px) {
	/*
		---------------------------------------------------------------------------------------------------------------------
		--------------------------------------- Header Nav Styles -----------------------------------------------------------
		---------------------------------------------------------------------------------------------------------------------
	*/
	
	
	nav {
		font-size: 1.45em;
	}


	/*
		---------------------------------------------------------------------------------------------------------------------
		--------------------------------------- Project Styles --------------------------------------------------------------
		---------------------------------------------------------------------------------------------------------------------
	*/

	.two_img_span img {
		width: 45%;
	}

	.three_img_span img {
		width: 27%;
	}

/* end of media min-width: 815px and max-width: 950px */
}

































