#headerLogo {
	object-fit: contain;
	height: 4em;
}
.headerContainer {
	background-color: #F55430;
	-webkit-box-shadow: 0em 0.2em 1em 0em rgba(59, 13, 3, 1);
	-moz-box-shadow: 0em 0.2em 1em 0em rgba(59, 13, 3, 1);
	box-shadow: 0em 0.2em 1em 0em rgba(59, 13, 3, 1);
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	width: 100vw;
	padding: 0.5em 0em;
	position: relative;
	z-index: 1;
}
.headerFixed {
	position: fixed;
}
#headerLogoContainer {
	align-items: center;
	display: flex;
	width: fit-content;
	margin-left: 1em;
}
#headerLinksContainer {
	align-items: center;
	display: flex;
	justify-content: space-evenly;
	flex-grow: 1;
	flex-wrap: wrap;
	margin: 0em 1em;
}
.headerLink {
	align-items: center;
	background-color: #F55430;
	border-radius: 0.2em;
	color: white;
	display: flex;
	flex-grow: 1;
	font-family: "Basic";
	font-size: 1.25em;
	justify-content: center;
	height: 4rem;
	margin: 0px;
	text-decoration: none;
	padding: 0em 0.5em;
	transition: 0.1s all;
}
.headerLink:hover {
	background-color: #F77A5E;
	font-size: 1.5em;
	padding: 0em 0em;
	transition: 0.1s all;
}