body {
	min-height: 94vh;
	width: 94vw;
	padding: 2vh 2vw;
	margin: 0;
	
	background-color: #ccffff;
	font-family: sans-serif;
	font-size: 1.5rem;
	
	display: flex;
	flex-direction: column;
	justify-content: space-between;

	> * {
		width: 100%;
	}
}

header {
	align-self: flex-start;
	ul {
		margin: 0;
		padding: 0;
		list-style-type: none;

		display: flex;
		justify-content: flex-start;
		li:first-child {
			border-left: 3px double black;
		}
		li {
			padding: 3px;
			border-right: 3px double black;
		}
	}
}

footer {
	align-self: flex-end;
	display: flex;
	justify-content: space-between;

	#quote {
		border-style: double;
		border-radius: 3px;
		border-color: black;
		border-width: 3px;
		p {
			margin: 2px;
		}
	}
}
