#header {
	position: fixed;
	width: 100%;
	height: 50px;
	top: 0;
	left: 0;
	display: flex;
	flex-direction: row;
	background-color: #FFFFFF;
}

#icon {
	display: inline-flex;
	aspect-ratio: 1/1;
	padding: 5px;
	height: 80%;
}

#desktop-navbar li {
	float: left;
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 15px;
	padding-bottom: 15px;
	list-style-type: none;
	color: black;
	text-decoration: none;
}

#desktop-navbar li:hover {
	text-decoration: underline;
	text-decoration-color: #d63325;
	text-decoration-thickness: 3px;
	text-underline-offset: 5px;
}

#mobile-navbar-slideout {
	position: fixed;
	top: 50px;
	left: 0;
	width: 0;
	height: 100%;
	overflow-x: hidden;
	transition: 0.25s;
	background-color: white;
}

#mobile-navbar-slideout li {
	color: black;
	text-decoration: none;
	padding-top: 15px;
	padding-bottom: 15px;
	padding-left: 25px;
	margin-left: 3px;
	font-size: 24px;
}

#mobile-navbar-slideout li:hover {
	margin-left: 0;
	border-left: 3px solid #d63325;
}

#mobile-navbar-slideout a {
	text-decoration: none;
}

#navbar-button {
	position: absolute;
	top: 50%;
	left: 100%;
	transform: translate(-150%, -50%);
	height: 30px;
}
