* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

body {

}

.wrapper {
	width: 100%;
	padding: 0 20px;
	margin: 0 auto;
}

#a11y-menu {
	position: absolute;
	top: -9999px;
	left: 0;
	&:has(a:focus) {
		position: relative;
		top: 0;
	}
	ul {
		display: flex;
		li {
			list-style: none;
			a {
				display: inline-block;
			}
		}
	}
}

#header {
	background: #355872;
	ul {
		display: flex;
		justify-content: center;
		li {
			list-style: none;
			a {
				display: block;
				padding: 20px;
				color: #F7F8F0;
			}
		}
	}
}
#main-content {
	min-height: 800px;
	h1 {
		margin: 2rem 0;
	}
	p {
		margin-bottom: 1rem;
	}
}
#footer {
	.wrapper {
		border-top: 1px solid #7AAACE;
	}
	span {
		display: inline-block;
		padding: 20px 0;
	}
}