#header-background {
    position: absolute;
    width: 100%;

	background-color: white;

    display: flex;
    justify-content: center;
}

#header {
	display: flex;
	justify-content: space-between;
	align-items: center;

    height: 100%;
	width: 100%;
    max-width: var(--site-width);
    margin: 10px var(--site-margin);
}

#homepage-link {
	color: crimson;
}

.header-menu-link {
	text-decoration: none;
	color: var(--header-link);
	font-family: ibm-regular;
	padding-bottom: 1px;
	transition: 0.1s;
	z-index: 2;
	margin-bottom: 2px;
}

.header-menu-link:hover {
	cursor: pointer;
	margin-bottom: 0px;
	border-bottom: 2px solid crimson;
}

.header-dropdown {
	transition: 0.1s;
}

.header-dropdown-button {
	color: var(--header-link);
	font-family: ibm-regular;
	padding-bottom: 1px;
	transition: 0.1s;
	position: relative;
	z-index: 2;
	cursor: default;
}

.header-dropdown:hover .header-dropdown-button, .header-dropdown:active .header-dropdown-button {
	border-bottom: 2px solid crimson;
}

.header-dropdown-toggle {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	background-color: white;
	padding: 70px 0px 40px 0px;
	display: none;
	z-index: 1;
	box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

.header-dropdown:hover .header-dropdown-toggle, .header-dropdown:active .header-dropdown-toggle {
	display: flex;
	justify-content: center;
}

.header-dropdown-links {
	max-width: var(--site-width);
	width: 90%;
	display: flex;
	flex-direction: column;
}

.header-dropdown-link {
	font-family: inter;
	font-size: 14px;
	color: black;
	text-decoration: none;
	text-align: right;
	margin: 8px 0px 8px auto;
	transition: 0.1s;
	width: fit-content;
}

.header-dropdown-link:hover {
	padding-right: 2px;
	border-right: 2px solid crimson;
}

