* {
	margin: 0;
	padding: 0;
	font-size: 1em;
	line-height: 1.25em;
	font-family: "Source Serif 4", serif;
}

:root {
	--primary: #ef2d32;
	--primary-light: #f9b3b5;
	--primary-dark: #850a0e;
	--secondary: #0eb1f0;
	--secondary-light: #9fe0f9;
	--secondary-dark: #075574;
	--white: #fafafa;
	--black: #050505;
	--grey: #808080;
	--grey-light: #dcdcdc;
	--grey-dark: #242424;
	--red: #e53424;
	--red-light: #ec675b;
	--red-dark: #b72315;
	--orange: #f58216;
	--orange-light: #f8a04f;
	--orange-dark: #c46308;
	--yellow: #e5d824;
	--yellow-light: #ece25b;
	--yellow-dark: #b7ac15;
	--green: #2dcc45;
	--green-light: #68de7a;
	--green-dark: #25a738;
	--blue: #2f79da;
	--blue-light: #639be3;
	--blue-dark: #1f5cad;
	--purple: #7144c1;
	--purple-light: #9775d1;
	--purple-dark: #583399;
	--text-italic: italic "EB Garamond", serif;
}

html {
	font-size: 16px;
}

body {
	min-width: 320px;
	background-color: var(--white);
}

header {
	width: 100%;
	display: flex;
	justify-content: center;
}

header>div {
	width: 90%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.header_logo {
	background-color: var(--primary);
	padding: 15px;
	border-radius: 5px;
	width: 15%;
}

.header_logo img {
	width: 100%;
	height: 100%;
}

nav {
	display: flex;
	padding: 10px 20px;
	background-color: var(--grey-light);
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
}

nav a {
	padding: 10px 20px;
	margin: 0px 2px;
	border-bottom: 1px solid transparent;
	font-size: 1.25em;
	text-decoration: none;
	color: var(--primary);
}

nav a:hover,
nav a.active {
	color: var(--primary);
	border-color: var(--primary);
	text-decoration: none;
}

#icon {
	display: none !important;
	font-size: 3em;
	color: var(--white);
}

a {
	color: var(--primary);
	text-decoration: none;
}

a:hover {
	color: var(--primary-dark);
	text-decoration: underline;
}

main {
	width: 100%;
	display: flex;
	justify-content: center;
}

main>div {
	width: 90%;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 25px 0px;
}

main p {
	margin: 10px 0px;
}

sup {
	font-size: .75em;
}

footer {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	background-color: var(--secondary-dark);
	color: var(--white);
}

footer>div {
	width: 90%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 25px 0px;
}

footer>div>div {
	display: flex;
	flex-direction: column;
}

footer a {
	color: var(--white);
	text-decoration: none;
}

footer a:hover {
	color: var(--grey-light);
}

@media screen and (max-width: 768px) {
	.header_logo {
		padding: 5px;
	}

	.header_logo img {
		width: 80px;
		height: 80px;
	}

	nav {
		padding: 5px 5px;
	}

	nav a {
		padding: 5px 5px;
		font-size: 1em;
	}
}

@media screen and (max-width: 425px) {
	header {
		background-color: var(--primary);
	}

	header>div {
		justify-content: space-between;
	}

	#icon {
		display: flex !important;
	}

	nav {
		display: none;
	}

	nav a {
		font-size: 1.25em;
		margin: 2px 0px;
	}

	nav.responsive {
		display: flex;
		flex-direction: column;
		align-items: center;
		width: 100%;
		position: absolute;
		left: 0;
		top: 90px;
		background-color: var(--grey-light);
		padding: 5px 0px;
		overflow: auto;
		z-index: 999;
		border-radius: 0px;
	}
}