html, body {
	position: relative;
	width: 100%;
	height: 100%;
}

body {
	background-color: #f9f9fa;
	color: #333;
	margin: 0;
	box-sizing: border-box;
	font-family: "Source Sans Pro";
	font-size: 16px;
}

a {
	color: rgb(0,100,200);
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

a:visited {
	color: rgb(0,80,160);
}

label {
	display: block;
	margin-bottom: 5px;
}

input, button, select, textarea {
	font-family: inherit;
	font-size: inherit;
	padding: 0.4em;
	margin: 0 0 0.5em 0;
	box-sizing: border-box;
	border: 1px solid #ccc;
	border-radius: 2px;
}

input:disabled {
	color: #ccc;
}

input[type="range"] {
	height: 0;
}

button {
	color: #333;
	background-color: #f4f4f4;
	outline: none;
}

button:active {
	background-color: #ddd;
}

button:focus {
	border-color: #666;
}

section {
	padding: 30px 15px;
	margin-bottom: 50px;
	box-sizing: border-box;
}

section > h1,
section > .section-title > h1 {
	text-align: center;
	margin-bottom: 75px;
	color: #444;
	font-size: 1.5em;
}

section h1::after {
	content: '';
	display: block;
	height: 3px;
	background-color: #815ba9;
	width: 55px;
	margin: 5px auto 0;
}

@media(min-width: 768px) {
	section > h1,
	section > .section-title > h1 {
		font-size: 2em;
	}
}