@charset "utf-8";
/* CSS Document */

body {
	width: 100%;
	background-color: #012169;
	background-image: url("graphics/bg_chapel.jpg");
	padding: 50px 0px 50px 0px;
	margin: 0px;
	color: #ffffff;
}

#header {
	background-color: #262626;
	padding: 30px 40px 30px 40px;
	margin: 0px 0px 0px 0px;
	text-align: center;
	opacity: 0.9;
}

#content {
	padding: 30px 15% 0px 15%;
	text-align: center;
}

h1 {
	font-family: Georgia, Cambria, serif;
	font-size: 3.5em;
	font-weight: normal;
	margin: 0px 0px 10px 0px;
}

h2 {
	font-family: open sans, arial, sans-serif;
	font-size: 1.5em;
	font-weight: 600;
	margin: 0px;
}

h3 {
	font-family: open sans, arial, sans-serif;
	font-size: 1.2em;
	font-weight: 600;
}

p {
	font-family: Georgia, Cambria, serif;
	font-size: 1.5em;
	line-height: 1.6em;
	color: #ffffff;
	text-align: left;
}

#second-row {
	margin-top: 50px;
}

.half-image {
	width: 50%;
	float: left;
	align-items: center;
}

.half-text {
	width: 47%;
	margin-left: 3%;
	float: left;
	align-items: center;
}

.half-image img {
	width: 100%;
	max-width: 500px;
}

p a {
	font-family: Open Sans, arial, sans-serif;
	font-weight: bold;
	color: #E89923;
	text-decoration: none;
}

p a:hover {
	text-decoration: underline;
}

#nav {
	margin: 0px 0px 50px 0px;
	padding: 0px;
	float: left;
	width: 100%;
}

#nav li {
	display: flex;
	list-style-type: none;
	justify-content: center;
	align-conent: center;
	flex-direction: column;
	text-align: center;
	float: left;
	width: 20%;
	background-color: #666666;
	margin: 0px;
	padding: 0px;
	font-family: Open Sans, arial, sans-serif;
	font-size: 1.25em;
	color: #B5B5B5;
	padding: 8px 0px 8px 0px;
}

#nav li.active {
	background-color: #C84E00;
	color: #ffffff;
	font-weight: bold;
}

#nav a:hover li {
	background-color: #E89923;
	color: #ffffff;
	font-weight: bold;
}

#nav a:hover li.active {
	background-color: #c84e00;
}




/****** BREAK POINT AT 1100 PIXELS ******/

@media all and (max-width: 1100px) 
	
{
	.half-image, .half-text {
		width: 80%;
		padding: 0px 10% 0px 10%;
		margin: 0px;
	}

	#second-row {
		margin-top: 0px;
	}
	
}

/****** BREAK POINT AT 800 PIXELS ******/

@media all and (max-width: 800px) 
	
{
	.half-image, .half-text {
		width: 90%;
		padding: 0px 5% 0px 5%;
	}

	p {
		font-size: 1.2em;
		line-height: 1.4em;
	}
	
	#nav li {
		width: 20%;
		font-size: 0.9em;
		height: 40px;
		vertical-align: middle;
		padding-top: 4px;
	}
	
}

