body {
	background-color: #fcfcfc;
	color: #333;
	font-size: 125%;
	line-height: 1.5;
	margin: 0 auto;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

a, h2 {
	color: plum;
}

.content {
	margin-bottom: 2rem;
}

.homepage {
	display: flex;
	justify-content: space-between;
}


.homepage > div > p {
	font-size: 16px;
	max-width: 500px;
}

.navlist_item {
	margin-left: 20px;
}

.navlist_item a {
	text-decoration: none;
}

.navlist_item a:hover {
	text-decoration: underline;
}

.headshots img {
	width: 350px;
}

.navbar {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	padding: 50px 10px 25px;
	max-width: 1200px;
	min-width: 800px;
	margin: 0 250px;
	border-bottom: 2px dashed #333;
}

.navbar__right {
	display: flex;
}

.navbar__right a {
	text-decoration: none;
	font-size: 12pt;
	margin-right: 10px;
	color: black;
	transition: all 100ms;
}

.navbar__right a:hover {
	text-decoration: underline;
	font-weight: bold;
}

.navbar__left a {
	text-decoration: none;
	font-size: 36px;
	color: plum;
	font-weight: bold;
}

.navbar__left__row2 {
	text-align: left;
	padding-left:40px;
}

main {
	max-width: 1200px;
	min-width: 800px;
	margin: 0 250px;
	padding: 30px 10px;
}

main blockquote {
	border-left: 4px solid lightskyblue;
	padding-left: 10px;
	font-size: 85%;
}

/* main blockquote:nth-child(even) {
	border-left-color: plum; 
} */


.resume_page {
	font-size: 11pt;
	display: flex;
	justify-content: space-between;
}

.resume_bio {
	line-height: 1.25;
	padding-right: 20px;
}

.resume_bio > p {
	max-width: 75%;
}

.resume_headshot img {
	width: 350px;
}

.resume_box {
	display: flex;
	font-size: 100%;
	align-items: center;
	padding: 7px 0px 7px 20px;
	background-color: lightskyblue;
	color: white;
	border-left: 5px solid purple;
	width: 290px;
}

.resume_preface {
	line-height: 2.3;
	font-size: 100%;
	padding-right:10px;
}

.resume_button {
	background-color: plum;
	font-size: 90%;
	font-weight: bold;
	padding: 6px 12px;
	margin: 0 10px;
	transition: all 100ms;
	border: 4px ridge white;
}

.resume_button:hover {
	background-color: purple;
}

.resume_box div a {
	text-decoration: none;
	color: white;
}
div.headshots {
	position: relative;
	display: inline-block;
}

div.headshots:after {
	content: '';
	position: absolute;
	left: 1.2rem;
	top: 0.9rem;
	border: 5px solid plum;
	width: 100%;
	height: 100%;
	z-index: -1;
}

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

	body {
		font-size: 3em;
	}

	.navbar {
		flex-direction: column;
		align-items: stretch;
		margin: auto;
		min-width: 280px;
		max-width: 90%;
		border-bottom: 4px dashed #333;
	}

	.navbar__left a {
		font-size: 52pt;
	}

	.navbar__right {
		align-self: flex-end;
	}

	.navbar__right a {
		font-size: 28pt;
		text-decoration: underline;
	}

	.homepage {
		flex-direction: column;
	}

	.homepage .headshots {
		width: 75%;
		margin: auto 10px;
		align-self: center;
	}

	.homepage .headshots img {
		width: 100%;
	}

	.resume_page {
		flex-direction: column;
		font-size: 20pt;
	}

	.resume_bio {
		font-size: 24pt;
	}

	.resume_box {
		width: 540px;
	}

	.resume_button {
		margin: 7px 0 7px 28px;
		border-width: 8px;
	}

	.resume_headshot {
		width: 75%;
		margin: auto;
	}

	.resume_headshot img {
		width: 100%;
	}

	main {
		margin: auto;
		min-width: 280px;
		max-width: 90svw;
	}

	main blockquote {
		border-left-width: 4px;
		padding-left: 20px;
	}
}