* {
	font-family: Arial, sans-serif;
	color: var(--color);
	text-decoration: none;
	scroll-behavior: smooth;
	scrollbar-width: none;
	margin: 0;
	padding: 0;
} ::-webkit-scrollbar {
	display: none;
}
ul {
	list-style-type: none;
}
html {
	background-color: var(--back);
}
body {
	display: grid;
	justify-content: center;
	align-items: center;
	background-color: var(--back);
	overflow: hidden;
}
#content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 95vw;
	height: 96vh;
}
nav {
	margin-top: 1vw;
	display: none;
	gap: 2.5vw;
	z-index: 999;
}
#hamburger {
	width: 2.5rem;
	display: flex;
	align-items: center;
	transition: opacity 0.2s;
} #hamburger:hover {
	opacity: 0.5;
	cursor: pointer;
}
#smalllogo-wrapper {
	display: flex;
	align-items: center;
	flex: 1;
} #smalllogo {
	display: block;
	width: 5em;
}
#links {
	display: flex;
	align-items: center;
	transition: filter 0.2s;
} #links.noninter {
	pointer-events: none;
} #links li {
	padding: 0.5rem;
} #links li img {
	width: 2rem;
} #links li a {
	transition: opacity 0.2s;
} #links li a:hover {
	opacity: 0.5;
}
#biglogo-wrapper {
	align-self: center;
	position: relative;
	display: inline-block;
	top: 0;
} #biglogo-wrapper.done {
	display: none;
} #biglogo {
	display: block;
	width: 25vw;
} .overlay-box {
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background-color: var(--back);
	transition: left 0.3s;
}
#menu {
	display: none;
	height: 100%;
	position: absolute;
	align-self: start;
	align-items: center;
	width: 25vw;
	background-color: #000;
	animation: slide-in 0.2s forwards;
} #menu.close {
	animation: slide-out 0.2s forwards;
} #menulinks {
	position: relative;
	left: 2.5vw;
	display: flex;
	flex-direction: column;
	font-size: 1.25rem;
	justify-content: space-between;
	height: 50%;
} #menu li img {
	width: 3rem;
	margin-right: 2rem;
} #menu li a {
	display: flex;
	align-items: center;
	transition: opacity 0.2s;
} #menu li a:hover {
	opacity: 0.5;
} .current {
	opacity: 0.5;
} .current a {
	pointer-events: none;
}
.hide {
    display: none;
}
footer {
	display: none;
	width: 100%;
	position: fixed;
	bottom: 1vh;
	background: none;
	grid-template-columns: 1fr auto;
	align-items: end;
} #footertext {
	text-shadow: 2px 2px 5px #000;
	font-size: 0.8em !important;
	margin: 0;
	padding: 0;
	justify-self: center;
	grid-column: 1 / -1;
	bottom: 0;
	background: none;
	position: absolute;
} footer a {
	background: none !important;
}

/* noscript */
#content span {
	align-self: center;
}