body {
	font-family: Verdana, "Lucida Grande", Tahoma, Helvetica, sans-serif;
	background-color: rgb(245,244,238);
	color: rgb(70,70,70);
}

#header, #main {
	max-width: 100%;
	width: 62em;
}

#header {
	margin: auto;
	font-family: Georgia;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}

#header h1 {
	border-right: 1px solid rgb(100,100,100);
	padding-right: 25px;
	padding-top: 30px;
	padding-bottom: 50px;
	font-size: 3.2em;
	margin: 5px 0;
}

#header p {
	border-bottom: 1px solid rgb(100,100,100);
	padding-bottom: 5px;
	margin-left: 25px;
	text-align: center;
	font: Georgia, Times, serif;
}

#main {
	margin: auto;
	max-width: 680px;
	border: solid 1px rgb(180,180,140);
	background-color: rgb(252,251,246);
	padding: 10px 70px;
}

h1 {
	margin: 0;
	color: rgb(0,50,70);
}

h2 {
	color: rgb(140,20,0);
}

/* So that it (somewhat) works on smartphones... */
@media only screen and (max-width: 768px) {
	#header, #main {
		max-width: 90% !important;
	}

	#main {
		padding: 10px 20px !important;
	}

	#header h1 {
		border-right: none !important;
		text-align: center !important;
		padding-right: 0 !important;
	}

	#header p {
		margin-left: 0 !important;
	}
}
