* {
	box-sizing: border-box;
}

html, body {
	font-family: Helvetica, Arial, "sans-serif";
	font-size: 16px;
	color: white;
	background: #222;
}

body {
	width: 100%;
	max-width: 500px;
	min-width: 300px;
	margin: 0 auto;
	padding: 1rem 2rem;
}

h1 {
	margin-bottom: .6rem;
}

p {
	margin: 0 0 2rem;
}

a {
	text-decoration: none;
	color: royalblue;
}

a:hover {
	text-decoration: underline;
}

label {
	display: block;
	font-size: 1rem;
	font-weight: 700;
}

select {
	display: block;
	width: 100%;
	border-radius: 3px;
	margin: .5rem 0;
	font-size: 1rem;
	background-color: #555;
    border: 1px solid #111;
}

.note {
	color: #000;
	font-size: .8rem;
}

#footer {
	clear: both;
}

.column {
	margin: 0 0 1.5rem;
}

.form {
	margin: 0 0 .5rem;
}

.button,
.button:hover {
	display: block;
	margin: 1.5rem 0;
	padding: .6rem 0;
	background: green;
	color: white;
	font-weight: 700;
	font-size: 1.2rem;
	text-align: center;
}

.button:hover {
	background: darkgreen;
	text-decoration: none;
}

.graphic,
.graphic__bar,
.button {
	border-radius: .3rem;
}

.graphic,
.graphic__bar {
	position: relative;
	width: 100%;
	height: 2.5rem;
	background: #040404;
	text-align: center;
}

.graphic__label {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	line-height: 2.5rem;
	-webkit-transform: translateZ(0);
	-moz-transform: translateZ(0);
	-ms-transform: translateZ(0);
	-o-transform: translateZ(0);
	transform: translateZ(0);
}

.graphic__bar {
	display: block;
	width: 0;
	background: royalblue;
}