:root {
	--page-margin: 96px;
	--deep-blue: #252732;
	/*--max-blue: #0f4daa;*/
	--max-blue: #314767;
	--medium-gray: #5e5e5e;
}

/************************ FONT ************************/
@font-face {
	font-family: 'EBGaramond';
	src: url('../font/EB_Garamond/EBGaramond-VariableFont_wght.ttf') format('truetype');
	font-weight: 100 900;
	font-style: normal;
}

@font-face {
	font-family: 'EBGaramondItalic';
	src: url('../font/EB_Garamond/EBGaramond-Italic-VariableFont_wght.ttf') format('truetype');
	font-weight: 100 900;
	font-style: italic;
}

h1 {
	margin: 0px 0px 0px 0px;
	font-size: 48px; /*96px;*/
	font-family: 'EBGaramond';
	font-weight: 500;
	color: var(--deep-blue);
}

h2 {
	margin: 0px 0px 32px 0px;
	font-size: 22px;
	font-family: 'EBGaramond';
	font-weight: 500;
	color: var(--deep-blue);
}

p {
	font-size: 16px;
	line-height: 1.25em;
	font-family: sans-serif;
	color: var(--medium-gray);
	margin: 0px 0px 16px 0px;
}





body {
	margin: 0px;
}





/*********************** NAVBAR ***********************/

#navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;

	height: 64px;
	/*(width: calc(100% - 2*var(--page-margin));*/

	padding: 0px calc(var(--page-margin) + 6px) 0px calc(var(--page-margin) - 6px);

	background-color: var(--max-blue);
}

#nav_logo {
	height: 64px;
}

#navlinks {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

#navlinks a {
	margin: 0px;
	
	font-size: 18px;
	font-family: sans-serif;
	font-weight: 400;
	color: white;
	text-decoration: none;
	margin-left: 48px;
}





/********************** FILEPATH **********************/

#filepath {
	width: 100%;

	display: flex;
	padding: 20px var(--page-margin) 0px var(--page-margin);
}

#filepath a {
	font-family: sans-serif;
	font-size: 15px;
	text-decoration: none;
	color: black;
}

#filepath a:hover {
	text-decoration: underline;
}

#filepath a.final {
	font-weight: bold;
}

#filepath a.final:hover {
	text-decoration: none;
}

#filepath p {
	font-family: sans-serif;
	margin: 0px 10px 0px 10px;
	color: black;
	font-size: 17px;
}





/************************ MAIN ************************/

#main {
	height: 100%;
	width: 100%;
}