body
{
	margin: 50px;
	font-family: "Helvetica";
}

#header
{
	border-radius: 30px;
	background-color: #E8AEEA; /*pink*/
	padding: 20px 20px 0px 20px;
	width: 1200px;
	height: 200px;
	position: relative;
}
#title
{
	font-size: 40px;
	font-weight: bold;
	text-decoration: none;
	margin-left: 150px;
	margin-bottom: 40px;
	color: black;
}
#description
{
	font-size: 20px;
	text-align: justify;
	color: black;
}

.question
{
	display: inline-block;
	border-radius: 10px;
	background-color: #AEEBA0; /*green*/
	padding: 20px;
	width: 800px;
	height: 100px;

	margin-top: 50px;
	margin-bottom: 20px;

	font-size: 35px;
	text-align: center;
	color: white;
}

.user-types
{
	outline: none;
	border: solid grey;
	border-radius: 3px;
	width: 830px;
	height: 30px;
	padding-left: 5px;

	font-size: 20px;
}
.user-types:focus
{
	border: solid #3F4041; /*darker grey*/
}
/*the following code is modified from https://codepen.io/w3programmings/pen/zzRKpy*/
input[type=radio]
{
	display: none;
}
label
{
  display: inline-block;
  width: 410px;
  height: 80px;
  border-radius: 10px;
  background-color: #A0E2EB;

  padding-top: 40px;
  margin-right: 15px;
  margin-bottom: 15px;

  font-size: 30px;
  text-align: center;
  color: white;
}
input[type="radio"]:checked + label
{
	background-color: #7FBDC5;
}
/*back to my own code*/

input[type="submit"]
{
	outline: none;
	border: none;
	border-radius: 5px;
	width: 120px;
	height: 40px;
	font-size: 20px;
	background-color: #AEEBA0; /*green*/
	color: white;
}
input[type="submit"]:focus
{
	background-color: #83A97A; /*darker green*/
}

img
{
	width: 300px;
	height: auto;
	border: 5px solid grey;
	border-radius: 10px;

	position: absolute;
}
#img1
{
	top: 335px;
	left: 980px;
}
#img2
{
	top: 700px;
	left: 980px;
}
#img3
{
	top: 990px;
	left: 980px;
}
#img4
{
	top: 1380px;
	left: 980px;
}
#img5
{
	top: 1720px;
	left: 980px;
}

#img6
{
	top: 2240px;
	left: 980px;
}
#img7
{
	top: 2530px;
	left: 980px;
}
#img8
{
	top: 2840px;
	left: 980px;
}

.answer-recap
{
	font-size: 25px;
}

#you-are
{
	font-size: 20px;
}
#snail-title
{
	position: relative;
	left: 100px;
	font-size: 50px;
}

hr
{
	border-top: 5px solid #3F4041; /*darker grey*/
	border-radius: 2px;
}
#snail-world
{
	color: #E8AEEA; /*pink*/
}