* {
	margin: 0;
	padding: 0;
}

html {
	height: 100%;
}
body {
	height: 100%;
	display: flex;
	flex-direction: column;
}


.header {
	background-color: #729fcf;
}

.header_content {
	margin: auto;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	background-color: #729fcf;
	height: 100%;
	max-width: 1200px;
}

.content {
	flex-grow: 1;
	flex-shrink: 1;
	flex-basis: auto;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	max-width: 1200px;
	height: max-content;
	color: #2f356c;
	font-family: sans-serif;
}

.content .bgimg {
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	font-size: xx-large;
	font-family: serif;
	font-weight: bold;
	text-shadow: 2px 2px 4px #bdddff, 1px 1px 8px #ffffff;
}

.content .bgimg h1 {
	font-size: xx-large;
}

.content .bgimg h2 {
	font-style: italic;
	font-size: 70%;
}

.content .main {
	padding: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.content h1 {
	font-size: large;
}

.block {
	display: flex;
	flex-direction: row;
}

.blockr {
	display: flex;
	flex-direction: row-reverse;
}

@media screen and (max-width: 800px) {
	.block, .blockr {
		flex-wrap: wrap;
	}
}

.blockc {
	max-width: 60%;
}

.main div {
	margin: 10px;
}

.main .text p, .main .text h1 {
	margin: 16px;
}


.main .image {
	flex-shrink: 0;
}

.main .image img {
	height: 200px;
	width: 300px;
	object-fit: cover;
	object-position: center;
}


.bio {
	display: flex;
	flex-direction: column;
}

.profile {
	display: flex;
	flex-direction: row;
}

.profile div {
	margin: 20px;
}

.profile .image img {
	width: 300px;
}

.profile h1, .profile p {
	margin: 10px;
}

@media screen and (max-width: 700px) {
	.profile {
		flex-wrap: wrap;
	}
}


.content .contact {
	font-size: xx-large;
	margin: auto;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}


.title a {
	float: left;
	display: block;
	text-decoration: none;
	text-align: center;
	padding: 10px;
	font-family: serif;
	font-size: 28px;
	background-color: #729fcf;
	color: #fff;
}


.nav_menu ul {
	list-style-type: none;
	overflow: hidden;
	height: 100%;
	min-height: 38px;
}

.nav_menu li {
	float: left;
	height: 100%;
}

.nav_menu a {
	display: flex;
	align-items: center;
	padding-left: 12px;
	padding-right: 12px;
	color: rgb(255, 255, 255);
	text-decoration: none;
	text-align: center;
	font-size: 16px;
	height: 100%;
}

.nav_menu .selected {
	background-color: #5192d8;
}

.nav_menu a:hover {
	background-color: #2076d3;
}


.footer {
	background-color: #2e3842;
	color: #fff;
}

.footer_content {
	margin-left: auto;
	margin-right: auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	max-width: 1200px;
}

.footer .image {
	display: flex;
	align-items: center;
	height: auto;
}

.footer img {
	width: 200px;
}

.footer .name {
	margin: 20px;
	color: #a4c2e2;
}

.footer .name h2 {
	font-size: 70%;
	font-style: italic;
	font-weight: normal;
}


.footer .address {
	margin: 20px;
	color: #63a0e0;
}

.footer .contact {
	margin: 20px;
	color: #63a0e0;
}