:root {
	--back-color: #98c1d9;
	--text-color: #384769;
	--selected-link: #000000;
	--title-color: #1d3a60;
	--lighter-color: #98c1d9;
	--link-hover-color: #5d7aa0;
	--content-pane-color: #f3f3f3;
	
	--light-text: Helvetica;
	--heavy-text: Bernard MT Condensed;
}

* {
	margin: auto;
	color: var(--text-color);
}

body {
	background-color: var(--back-color);
}

img {
	padding: 20px;
}

.web-content-div {
	width: 800px;
}

.header {
	height: 100px;
	margin-bottom: 50px;
}

.header-text {
	float: left;
	padding-top: 38px;
}

.content {
	width: 700px;
	min-height: 60%;
}

.content-pane {
	padding: 20px;
	padding-bottom: 10px;
	background-color: var(--content-pane-color);
	box-shadow: 10px 10px var(--text-color);
	margin-bottom: 50px;
}

.content-pane-information {
	padding-top: 24px;
	color: var(--text-color);
	font-size: 14px;
	font-family: var(--light-text);
}

.footer {
	padding-top: 18px;
	padding-bottom: 18px;
	text-align: center;
	bottom: 0;
	width: 100%;
	background-color: var(--content-pane-color);
}

.large-text {
	font-size: 36px;
	font-weight: bold;
	font-family: var(--heavy-text);
}

.medium-text {
	color: var(--title-color);
	font-size: 30px;
	font-weight: bold;
	font-family: var(--heavy-text);
	padding-bottom: 10px;
}

.normal-text {
	font-family: var(--light-text);
	font-size: 18px;
}

.smaller-text {
	font-family: var(--light-text);
	font-size: 14px;
}

a {
    color: var(--title-color);
    text-decoration: none;
}

.header a {
	color: var(--content-pane-color);
	text-decoration: none;
	margin-right: 30px;
}

.header a:hover {
	color: var(--link-hover-color);
}

.header a:active {
	color: var(--title-color);
}

@media only screen and (max-width: 800px) {
	* {
		box-sizing: border-box;
	}
	
	.web-content-div {
		width: 100%;
	}
	
	.header a {
		clear: both;
		display: block;
		padding: 4px 0px;
	}
	
	.header-text {
		padding-top: 0px;
	}
	
	.content {
		width: 100%;
		clear: both;
	}
	
	.content-pane {
		width: 100%;
		box-shadow: 0px 0px white;
		margin-bottom: 4px;
	}
}