* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-family: 'arial', sans serif;
	font-size: 1rem;
	color: black;
}

body {
	display: flex;
	flex-direction: column;
}

header {
	padding: 1rem;
	width: 100%;
	background-color: #FFFFCC;
	border: 1px solid blue;
}

.header_text {
	margin-left: 12rem;
	font-family: 'Times New Roman', Times, serif;
	font-size: 2rem;
	font-weight: normal;
	color: #0000FF;
}

main {
	display: flex;
	flex-direction: row;
	/* put navbar and main_text area in a row */
}

.main_text {
	display: flex;
	flex-direction: column;
	padding: 1rem;
	row-gap: 1rem;
	width: 100%;
	height: fit-content;
}

dl.list_margin {
	margin-left: 2rem;
}

.navbar {
	display: flex;
	flex-direction: column;
	margin-top: 4rem;
	padding: 2rem;
	row-gap: 1rem;
	width: fit-content;
}

.nav_link_text a {
	font-size: 1.25rem;
	text-decoration: none;
	color: #0000FF;
}

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

.current_nav_link_text {
	font-size: 1.25rem;
	text-decoration: none;
	color: #0000ff91;
}

.title_text {
	font-family: 'Times New Roman', Times, serif;
	font-size: 2rem;
	font-weight: normal;
	padding: 0.5rem;
}

h2.image_heading {
	font-family: 'Times New Roman', Times, serif;
	font-size: 1.5rem;
	font-weight: normal;
	padding: 1rem;
	color: #0000FF;
}

img.padded {
	max-width: 100%;
	min-width: 50%;
	height: fit-content;
	padding-top: 0.5rem;
	padding-bottom: 1rem;
}

img.icon {
	max-width: 100%;
	height: fit-content;
	padding-top: 0.5rem;
	padding-bottom: 1rem;
}

div.row {
	display: flex;
	flex-direction: row;
	column-gap: 1rem;
}

div.column {
	display: flex;
	flex-direction: column;
	row-gap: 1rem;
}

div.text_align_center {
	text-align: center;
}

div.italic {
	display: flex;
	flex-direction: column;
	font-style: italic;
	margin-left: 2rem;
	row-gap: 1rem;
}

h2.footer_text a {
	font-size: 1.25rem;
	font-weight: normal;
	color: #0000FF;
	text-decoration: none;
}

h2.footer_text a:hover {
	text-decoration: underline;
}

hr {
	margin: auto;
	width: 30%;
	border-top: 1px solid #0000FF;
	clear: both;
}

.center {
	display: block;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

@media only screen and (min-width: 630px) {}