@charset "UTF-8";
/* CSS Document */

body
	{
		margin: 20px;
		padding: 0px;
		background-color: #fff;
		font-family: 'Roboto', sans-serif;
		font-size: 12pt;
		text-align: center;
		font-weight: bolder;
		color: #000;	
}

heading {
	margin-left: auto;
	margin-right: auto;
	width: 10%;
	font-family: 'Roboto', sans-serif;
	font-size: 1.5em;
	font-weight: bold;
}

heading.h1 {
		font-family: 'Roboto', sans-serif;
		font-size: 2em;
		text-align: center;
		font-weight: bold;
		color: #000;	
}

legend {
	color: #000;
	border: #917a56 solid 1px;
	background-color: rgba(153, 205, 255, 20);
	
	border-radius: 10px;
	box-shadow: 0 0 2px rgba(0,0,0,.7) inset;
	padding: 10px;
	margin-left: auto;
	margin-right: auto;
	width: 90%;
	font-family: 'Roboto', sans-serif;
	font-size: 1.5em;
	font-weight: bold;
	text-align:center
}

fieldset {	
	border-radius: 10px;
	background-color: rgba(255, 255, 255, .5);
	margin:15px;
	border: #917a56 solid 2px;
	max-width: 900px;
	box-shadow: 0 0 6px rgba(0,0,0,.7) inset;
}

/*this is the user instructions for each input. name, address, email etc. */
label {
	display:block; /* forces a hard return and allows margin to be assigned*/
	margin-top: 2em;
	text-align: center;
	font-size: 1.5em;
}

label p {
	font-size: 5em;
	font-weight: bold;
	color: #000;
	padding-top: .4em;
	padding-bottom: .2em;
}

input[type=text] {
	font-family: 'Roboto', sans-serif;
	padding: 12px;
	font-size: 1em;
	text-align: center;
	font-weight: bold;
	color: #000;
	width: 20%;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.4);
	border: 2px solid #333;		
}

input[type=submit] {
	font-family: 'Roboto', sans-serif;
	background-color: rgba(0, 153, 0, .2);
	padding: 12px;
	text-align: center;
	color: #000;
	font-size: 1.5em;
	font-weight: bolder;
	width: 30%;
	border-radius: 8px;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.4);
	border: 2px solid #333;		
}

input[type=reset] {
	font-family: 'Roboto', sans-serif;
	background-color: rgba(0, 128, 255, .8);
	padding: 2px;
	text-align: center;
	color: #fff;
	font-size: 1em;
	font-weight: bold;
	width: 30%;
	border-radius: 8px;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.4);
	border: 2px solid #333;		
}