body {
	font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
	color: white;
	background-image: url("images/bg.webp");
	background-size: cover;
	background-attachment: fixed;
	background-position: top;
	margin: 0;
	padding: 1px;
	overflow-y: hidden;
}

.logo {
	height: 2em;
	margin: 0.5em;
}

.contactbutton {
	display: flex;
	margin: auto;
	background-color: red;
	font-size: 1.25em;
	font-weight: bold;
	margin-top: 1em;
	padding: 0.5em 3em;
	border: none;
	color: white;
	cursor: pointer;
}

.header {
	background-color: #2262A1;
	left: 0;
	right: 0;
	height: 3em;
	display: flex;
	align-items: center;
}

a {
	text-decoration: none;
}

.sectionlink{
	color: white;
	margin: 0 1em;
	font-weight: bold;
	text-decoration: none;
}

.sectionlink:hover {
	text-decoration: underline 0.15em;
}

.content{
	position: absolute;
	top: 3em;
	overflow-y: scroll;
	overflow-x: hidden;
	height: calc(100vb - 3em);
	scroll-behavior: smooth;
}

.section {
	background-color: #0008;
	padding: 2em 0;
	margin: 0 0 4em;
	max-width: 100vw;
}

.last {
	margin: 0;
}

.sectioncontent {
	max-width: 80%;
	margin: 0 10%;
}

.caption {
	font-weight: 300;
	text-align: center;
}

.paragraph {
	font-weight: 400;
	text-indent: 3em;
}

.title {
	text-align: center;
	margin: auto;
}

.headshot {
	display: inline-block;
	width: 20vw;
}

.headshotwithcaption {
	margin-bottom: 0.5em;
	margin-left: 0;
	margin-top: 0;
	margin-right: 1.5em;
	float: left;
}

.bio {
	margin: 2em 0;
	height: fit-content;
	clear: both;
}

.biocaption {
	font-size: 0.9em;
	font-style: italic;
	font-weight: 200;
}

.biocontent {
	font-size: 1.2em;
	margin: 0;
	font-weight: 300;
	line-height: 1.25;
	text-indent: 3em;
}

.biospacer {
	clear: both;
	height: 1em;
}

@media only screen and (max-width: 900px){
	.bio {
		display: flex;
		flex-wrap: wrap;
	}
	.biocontent {
		height: fit-content;
	}
	.headshot {
		width: 40vw;
	}
	.headshotwithcaption {
		margin-bottom: 1em;
	}
}