* {
	box-sizing: border-box;
	font-family: serif;
}

body {
	margin: 0;
	font-family: serif;
	text-align: left;
	
}

p {
	padding-bottom: 20px;
	font-size: 1.25rem;
}

.topnav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	text-align: center;
	justify-content: center;
	background-color: #bcb88a;
	padding: 10px;
}

.topnav a {
	color: #f2f2f2;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
}

.topnav a:hover {
	background-color: #ddd;
	color: black;
}

.content {
	background-color: #fdf5e6;
	padding: 10px;
}

.footer {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	background-color: #f1f1f1;
	padding: 10px;
	text-align: center;
	justify-content: center;
}

.footer a{
	margin-right: 20px;
}