html, body {
	position: relative;
	display: flex;
	min-width: 100%;
	min-height: 100%;
	flex: 1 1;
	flex-direction: column;
}

#header_anim {
	display: flex;
	flex: 1 1 100%;
	position: fixed;
	top: 0;
	left: 0;

	pointer-events: none;
}

main {
	display: flex;
	flex: 1 1;
	align-items: center;
	justify-content: center;
}

footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	padding: 2rem;

	background-color: #B8DDCF;
}

footer > img {
	height: 100%;
	aspect-ratio: 1;
	max-height: 96px;
}


footer ul li {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

footer ul {
	display: flex;
	flex-flow: row wrap;
	gap: 0.5rem;
	align-items: center;
}


a {
	color: currentColor;
	display: block;
	padding: 0.5rem 1rem;
}

a:hover {
	background-color: white;
	color: black;
}

a:active {
	background-color: grey;
}