body {
	background-color: hsl(225, 30%, 15%);
	color: hsl(0, 0%, 85%);
	font-family: sans-serif;
	margin: 1rem;
}

.title {
	text-align: center;
}

.content {
	background-color: hsl(225, 30%, 10%);
	margin: auto;
	padding: 1rem;
	width: 50%;
	border-style: solid;
	border-radius: 1rem;
	border-width: 0.5rem;
	border-color: hsl(225, 30%, 20%);
}

#progress {
	background-color: hsl(225, 30%, 20%);
	color: hsl(225, 30%, 30%); /* Needs vendor specific stuff :/ */

	width: 100%;
	border-radius: 0.25rem;
	border-width: 0;
}

#progress::-moz-progress-bar {
	background-color: hsl(225, 30%, 30%);
}

#progress::-webkit-progress-value {
	background-color: hsl(225, 30%, 30%);
}

#prompt {
	text-align: center;
}

#options {
	margin: auto;
	width: 80%;
}

.option {
	background-color: hsl(225, 30%, 15%);
	width: 32%;
	height: 4rem;
	border-style: solid;
	border-radius: 1rem;
	border-width: 0.4rem;
	border-color: hsl(225, 30%, 25%);
	font-weight: bold;
	font-size: 1.5rem;
	cursor: pointer;
}

.yes {
	background-color: hsl(130, 50%, 10%);
	color: hsl(130, 50%, 50%);
	border-color: hsl(130, 50%, 20%);
}

.no {
	background-color: hsl(0, 50%, 10%);
	color: hsl(0, 50%, 50%);
	border-color: hsl(0, 50%, 20%);
}

.skip {
	color: hsl(0, 0%, 70%);
}

#finished {
	text-align: center;	
}

.hidden {
	display: none;
}