:root {
	--header-height: 140px;
	--logo-margin: 20px;
}
header {
	background-color: var(--tertiary);
	min-height: var(--header-height);
	display: flex;
	justify-content: space-between;
}
.logo {
	margin: var(--logo-margin);
	max-height: calc(var(--header-height) - var(--logo-margin) * 2);
	transition: ease-out 0.2s transform;
	max-width: 80%;
}
.logo:hover {
	transform: scale(1.1);
}
nav {
	display: inline-flex;
	gap: 15px;
	justify-content: center;
	align-items: center;
	vertical-align: top;
	height: var(--header-height);
	padding-inline: 20px;
}
nav a, nav div {
	color: var(--tertiary-text);
	text-decoration: none;
	font-size: 30px;
	cursor: pointer;
}
nav a:hover {
	color: var(--tertiary-text-hover);
}
nav .divider {
	background-color: var(--tertiary-text);
	height: 30px;
	width: 2px;
	border-radius: 1px;
}
nav .navitem {
	position: relative;
}
nav .dropdown {
	display: none;
	position: absolute;
	top: 36px;
	padding-top: 50px;
	padding-bottom: 10px;
	background-color: var(--tertiary);
	min-width: 100%;
	z-index: 3;
}
nav .navitem:hover .dropdown {
	display: block;
}
nav .navitem:hover .dropdown a {
	padding: 16px 12px;
}
@media only screen and (max-width: 900px) {
	header {
		display: block;
		text-align: center;
	}
	nav {
		display: flex;
		height: initial;
		gap: 1vw;
	}
	nav .dropdown {
		top: calc(3vw + 7px);
		padding-top: 10px;
	}
	nav .navitem, nav .navitem a {
		font-size: min(5vw, 30px);
	}
}
