html, body {
	min-height: 100%;
	background: #f2f2f2;
	font-family: "IM Fell English", serif;
	line-height: 1.2;
}

h1 {
	margin-left: 30px;
}

span {
	display: block;
}

li span {
	position: relative;
	left: 31.5%;
	margin-top: 5px;
	letter-spacing: 3px;
	display: none;
}

.container {
	display: block;
	height: 450px;
	width: 400px;
	margin: auto; /* This & next 5 lines get the job of centering done */
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-image: url("images/fish.png");
	background-size: cover;
	border-radius: 20px;
	padding: 20px;
	-webkit-box-shadow: 10px 10px 25px 0px rgba(0,0,0,0.51);
	-moz-box-shadow: 10px 10px 25px 0px rgba(0,0,0,0.51);
	box-shadow: 10px 10px 25px 0px rgba(0,0,0,0.51);
} /* Generated w/ the super-convenient http://www.cssmatic.com/box-shadow */

ul {
	list-style-type: none;
	padding: 0;
}

li {
	color: #aaa;
	margin-bottom: 25px;
	position: relative;
}

label {
	position: relative;
	display: inline-block;
	font-size: 1.8em;
	color: #003366;
	padding: 0px 20px 0px 30px;
	transition: all 0.25s linear;
	margin-left: 0;
	z-index: 10;
}

li:hover label {
	color: white;
}

.circle {
	position: absolute;
	height: 15px;
	width: 15px;
	top: 7px;
	left: 5px;
	border: 3px solid #00cccc;
	border-radius: 100%;
	z-index: 5;	/* Need this to be able to select THROUGH the fake radio <div>*/
	transition: border .3s linear;
}

li:hover .circle {
	border: 3px solid #33ffff;
}

.circle:after {
	content: '';
	border-radius: 100%;
	height: 9px;
	width: 9px;
	position: absolute;
	top: 3px;
	left: 3px;
	transition: background .3s linear;
} /* This is an invisible pseudo-element whose background you make visible
     when the radio input is checked (which happens when you click anywhere on
     its label) */

input[type=radio] {
	display: none;
}

input[type=radio]:checked + label { /* Select <label> immediately AFTER */
	color: white;
}

input[type=radio]:checked ~ .circle {
	border: 3px solid #33ffff;
}

input[type=radio]:checked ~ .circle:after { /* Select all .circle siblings after */
	background: #33ffff;
}

input[type=text] {
	font-family: inherit;
	font-size: 24px;
	width: 60%;
}

img {
	width: 40px;
	height: 40px;
	cursor: pointer;
	margin-bottom: 10px;
	float: left;
}