:root{
	--pageWidth: 90%;
	--inkColor: white;
	--bgColor: #4A412A;
}

body{
	background-color: var(--bgColor);
	width: var(--pageWidth);
	margin: 0 auto;
	color: var(--inkColor);
}

header{
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	padding-top: 1em;
	padding-bottom: 1em;
}
h1{
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}
button{
	border-color: transparent;
	border-style: solid;
	border-width: thin;
	background: transparent;
	font-size: 2em;
	margin-left: auto;
	margin-right: .5em;
	color: var(--inkColor);
}
button:hover{
	cursor: pointer;
}

h2{
	text-align: center;
}
p{
	text-indent: 3em;
}
hr{
	width: 100%;
	height: 1px;
	background: var(--inkColor);
}
a{
	color: inherit;
}
ul{
	list-style-type: none;
	margin: 0;
	padding: 0;
	text-align: center;
}

.navLink{
	margin-left: 1em;
	margin-right: 1em;
	font-size: 1.5em;
}