body{
	font-family:Segeo-UI, Verdana, sans-serif;
}

.hidden{
	display:none;
}
.oops{
	text-align:center;
	margin-top: 6em;
}
.mainContainer{
	clear:both;
	width: 100%;
	max-width:900px;
	margin:3em auto;
}
.sectionOne{
	position:relative;
	z-index: 1;
	text-align:center;
	font-size: 1.5em;
	margin-bottom: -2em;
	min-height: 6em;
}
.sectionTwo{
	height: 21em;
}
.optionWrapper{
	width:100%;
	clear:both;
	display: flex;
	justify-content: space-around;
	align-items: baseline;
}
.option{
	width:30%;
	height:20em;
	text-align: center;
}
input[type=radio]{
	margin:2em;
}
.radio{
	height:2em;
	width:2em;
	background-color:#54a7d3;
}
.option img{
	width:100%;
	height: auto;
}
.subButton{
	margin: 1em 0 3em 0;
	clear:both;
	width:10em;
	float:right;
}
.submitButton{
	width: 100%;
	cursor: pointer;
}
input[type=radio] {
    display: none;
}
input[type=radio] + span {
    display: inline-block;
    border: 1px solid #000;
    border-radius: 50%;
    margin: 2em;
}
input[type=radio]:checked + span {
    background-color: #000;
}
label{
	width:100%;
}
@media only screen and (max-width: 500px) {
	.option{
		height: 14em;
	}
}