#page {
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	min-height: 100vh;
}

#page > header {
	transition-timing-function: cubic-bezier(0.2, 0, 0.38, 0.9);
	background: var(--color-menu-bg);
	border: none;
	max-width: 99rem;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1px;
	position: relative;
	z-index: 5999;
	top: 0;
	right: 0;
	left: 0;
	display: flex;
	height: 3rem;
	align-items: center;
}

#page > section {
	display: flex;
	flex-direction: column;
	padding-top: 3rem;
	width: 100%;
}

#page > footer {
	width: 100%;
	padding-block: 3rem;
	color: #f4f4f4;
	background-color: #262626;
	padding-top: 3rem;
}
