/* CSS reset */
html {
	box-sizing: border-box;
	font-size: 16px;
}
*, *:before, *:after {
	box-sizing: inherit;
}
body, h1, h2, h3, h4, h5, h6, p, ol, ul, figure {
	margin: 0;
	padding: 0;
	font-weight: normal;
}

/* custom */
header, section {
	padding-bottom: 15pt;
}

header h1 {
	text-align: center;
}

header img {
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1em;
	border-radius: 50%;
}

body {
	font-family: Arial, sans-serif;
	font-size: 12pt;
	max-width: 40em;
	line-height: 1.5;
	text-align: justify;

	padding: 10px;
	margin: 40px auto;

	color: #111;
	background-color: #F5F5F5;
}

ul {
	margin-top: 1em;
	margin-left: 1em;
}

p {
	margin-bottom: 1em;
}

li {
	margin-bottom: .2em;
}

hr {
	margin-top: 2em;
	margin-bottom: 2em;
}
