* {
	margin: 0;
	padding: 0;
}

header {
	width: 1200px;
	max-width: 95%;
	margin: 2em auto;
}

.header_logo img {
	height: 2.5em;
}

/* On smaller screens*/
@media only screen and (max-width: 820px) {
	.desktop-header {
		display: none;
	}
}
/* On larger screens */
@media only screen and (min-width: 820px) {
	.mobile-header {
		display: none;
	}
}
.desktop-header .header_menu {
	display: inline-block;
}
.desktop-header .header_menu ul {
	padding-left: 0px;
}
.desktop-header .header_menu ul li {
	list-style: none;
}
.desktop-header .header_menu ul li a {
	text-decoration: none;
	padding: 0.5em 1em;
	font-family: serif;
	color: black;
	font-size: 1.05em;
}
.desktop-header .header_menu ul li a:hover::after {
	transform: scaleY(0.8) scaleX(1) translateZ(0);
	transition: transform 0.2s ease-in-out 50ms;
}
.desktop-header .header_menu ul li a::after {
	border-bottom: 2px solid black;
	content: "";
	display: block;
	height: 0;
	left: 0;
	opacity: 1;
	position: relative;
	top: 2px;
	transform: scaleY(0.8) scaleX(0) translateZ(0);
	transform-origin: top left;
	transition: transform 0.2s ease-in-out;
	margin: 0em 1em;
}

#header_menu_wrapper {
	background-color: rgba(0, 0, 0, 0.3333333333);
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 1;
}
#header_menu_wrapper > #header_menu_list {
	background-color: white;
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 400px;
}
@media only screen and (max-width: 580px) {
	#header_menu_wrapper > #header_menu_list {
		width: 100%;
	}
}
#header_menu_wrapper > #header_menu_list > div {
	text-align: right;
}
#header_menu_wrapper > #header_menu_list > div #header_menu_close {
	font-size: 2.5em;
	margin-right: 2em;
	text-decoration: none;
	color: black;
}
#header_menu_wrapper > #header_menu_list > div #header_menu_close:hover {
	text-shadow: 0 0 5px gray;
}
@media only screen and (max-width: 580px) {
	#header_menu_wrapper > #header_menu_list > div #header_menu_close {
		margin-right: 0.5em;
	}
}
#header_menu_wrapper > #header_menu_list > ul {
	padding-left: 0;
}
#header_menu_wrapper > #header_menu_list > ul > li {
	list-style: none;
	text-align: center;
	border-top: 1px solid var(--header-menu-border-color);
}
#header_menu_wrapper > #header_menu_list > ul > li > a {
	text-decoration: none;
	font-family: serif;
	color: black;
	font-size: 1.05em;
	padding: 1em;
	display: block;
}
#header_menu_wrapper > #header_menu_list > ul > li > a:hover {
	background-color: whitesmoke;
}
#header_menu_wrapper > #header_menu_list > ul > li:last-child {
	border-bottom: 1px solid var(--header-menu-border-color);
}/*# sourceMappingURL=index.css.map */