body {
	background: white;
	color: #333;
	font: 22px 'Quicksand', sans-serif;
	text-align: center;
}
h1 span {
	color: saddlebrown;
}
p {
	margin: 1em auto;
	max-width: 1000px;
	animation: slidein 1s 1 forwards;
	transition: all 0.5s;
}
ol {
	text-align: left;
}
@keyframes slidein {
	0%  { opacity: 0; transform: translateX(50px); }
	100%{ opacity: 1; transform: translateX(0); }
}
.number {
	margin: 0 auto;
	height: 1em;
	width: 1em;
	background: linear-gradient(135deg, saddlebrown, #720);
	color: white;
	border-radius: 50%;
	padding: 0.5em;
	font-size: 3em;
	line-height: 1em;
	text-align: center;
	animation: number-pop 0.6s ease 1 forwards;
}
@keyframes number-pop {
	0%  { transform: scale(0); }
	60% { transform: scale(1.1); }
	100%{ transform: scale(1); }
}
a { /* plain links on end page, not buttons */
	color: saddlebrown;
}
i {
	font-size: 0.9em;
}
.button {
	display: inline-block;
	background: saddlebrown;
	color: white;
	border: 1px #eee solid;
	border-radius: 0.5em;
	padding: 0.5em;
	text-decoration: none;
	transition: all 0.2s;
}
.button:hover {
	transform: scale(1.1);
}
.button:active {
	transform: scale(0.9);
}
aside {
	display: inline-block;
	vertical-align: top;
	max-width: 24em;
	margin: 0.5em;
	font-size: 0.9em;
	border: 1px solid saddlebrown;
	border-radius: 1em;
	padding: 0.5em;
}