body {
	margin: 0;
	font-family: Georgia, serif;
	text-shadow: 1px 1px 2px #333333;
	background-color: #4d4d4d;
}
/* HEADER, MAIN, ETC */
header {
	display: flex;
	justify-content: flex-start;
	background-color: #969696;
}
h1 {
	display: flex;
	flex-direction:column;
	justify-content: flex-start;
	width: 80%;
	margin: 25px auto;
	color: #7c0a02;
	font-size: 3em;
}
main {
	display: block;
	width: 80%;
	margin: 0 auto;
	padding: 40px 0;
	background-color: #4d4d4d;
	align-items: center;
}
#nav {
	display: block;
	width: 100%;
	margin: 0 auto;
	text-shadow: none;
	background-color: #4d4d4d;
	border-bottom: 1px solid #969696;
}
/* UNORDERED LIST NAV */
ul {
	display: table;
	width: 80%;
	margin: 0 auto;
	padding: 0;
	overflow: hidden;
	background-color: #4d4d4d;
	list-style-type: none;
}
li {
	font-size: 1.75em;
	border-right: 1px solid #969696;
	float: left;
}
li:last-child {
	border-right: none;
}
li a {
	display: block;
	padding: 8px;
	color: white;
	text-decoration: none;
	box-sizing: border-box;
}
li a:hover {
	color: #7c0a02;
	background-color: #969696;
	transition: color 200ms, background-color 200ms;
}
.active {
	color: white;
	background-color: #333333;
}
.active:hover {
	color: white;
	background-color: #333333;
}
/* headings (external from header) */
h2 {
	display: flex;
	margin-top: 0;
	flex-direction: column;
	justify-content: flex-start;
	color: white;
	font-size: 2.5em;
}
h3 {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	color: white;
	font-size: 2em;
}
.subH3 {
	font-size: 0.7em;
	font-style: italic;
}
img {
	max-width: 100%;
	height: auto;
}
p {
	color:#AEAEAE;
}
#portrait {
	
	align-items: left;
	width: 75%;
	height: auto;
	margin: 0 auto;
}
.projectImages img {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 0 auto;
	margin-bottom: 16px;
}
.projectImages img:last-child {
	margin-bottom: 0;
}
#portfolioImages img{
	display: block;
	margin: 0 auto;
}
#portfolioImages h3{
	text-align: center;
}
footer {
	display: block;
	padding: 25px 0;
	background-color: #969696;
	overflow: auto;
}
#social-links {
	display: table;
	margin: 0 auto;
	padding: 10px 0;
	clear: right;
}
#social-links a {
	display: inline-block;
	width: 36px;
	margin-right: 8px;
	font-size: 2em;
	color: #7c0a02;
	text-align: center;
	transition: color 200ms;
}
#social-links a:hover {
	color: white;
	/* color: #4d4d4d; */
	/* text-shadow: none; */
}
#social-links a:last-child {
	margin: 0;
}
#copyright {
	display: block;
	padding-bottom: 10px;
	color: #7c0a02;
	text-align: center;
	text-shadow: 1px 1px 1px #333333;
}

/* MEDIA QUERIES */
@media only screen and (max-width: 725px) {
	li {
		font-size: 1.50em;
	}
}
@media only screen and (max-width: 640px) {
	li {
		font-size: 1.25em;
	}
}
@media only screen and (max-width: 550px) {
	li {
		font-size: 1em;
	}
}
@media only screen and (max-width: 460px) {
	ul {
		width: 100%;
		margin: 0;
	}
	li {
		font-size: 1.5em;
		border-right: none;
		float: none;
	}
	li a {
		display: block;
		width: 100%;
		text-align: center;
	}
}
