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

/* move to page file*/
@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;
        }


body {
	margin: 0px;
}

#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);
}

#navbar p {
	margin: 0px;
	
	font-size: 18px;
	font-family: sans-serif;
	font-weight: 400;
	color: white;
}

#nav_logo {
	height: 64px;
}

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

#navlinks p {
	margin-left: 48px;
}

#navlinks a {
	text-decoration: none;
}

#filepath {
	width: 100%;

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

#filepath a {
	font-family: sans-serif;
}

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

#landing_view {
	width: calc(100% - 2*var(--page-margin));
	height: calc(100vh - 64px);

	padding: 0px var(--page-margin);

	display: flex;
	justify-content: space-between;
	align-items: center;
}

#landing_view h1 {
	margin: 0px 0px 64px 0px;
	
	font-size: 96px;
	font-family: 'EBGaramond';
	font-weight: 500;
	color: var(--deep-blue);
}

#landing_view p {
	font-size: 18px;
	line-height: 1.5em;
	
	font-family: sans-serif;
	color: var(--medium-gray);
}

#landing_image {
	max-width: 50%;
	height: auto;
	max-height: calc(100vh - 64px - 10%)
}

#landing_text {
	width: 36%;

	display: flex;
	flex-direction: column;
}

#landing_text p {
	margin: 0px;
}

#landing_arrow {
	background-image: url("../images/arrow_right.png");
	background-repeat: no-repeat;
	background-size: cover;
	height: 80px;
	width: 160px;

	margin-left: calc(100% - 160px);
}


