html * {box-sizing: border-box;}
body 
{
	font-family: system-ui,sans-serif;
	font-size: 100%;
	line-height: 135%;
}

#firstform fieldset 
{
	width: 50%;
}

#firstform .personal label 
{
	display: inline-block;
	min-width: 45%; 
	color: red;
}

#firstform .choices label 
{
	display: inline-block;
	min-width: 80%;
}
#firstform .choices label:hover 
{
	background-color: #eee;
}

#firstform hr 
{
	border-color: #aaa;
	border-width: 1px 0 0 0;
}

#firstform input[type="submit"] 
{
	border-radius: 0;
	border-width: 0;
	background-color: green;
	padding: .5em;
	color: white;
	font-weight: bold;
	margin-top: 1em;
}


p 
{
	text-align: justify;
}