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

body{
	font-family:"Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
}

main{
	text-align:center;
}

table{
	margin-left:auto;
	margin-right:auto;
	border: 1px solid black;
	width:600px;
}

form{
	padding:20px;
}

#form-box{
	display:inline-block;
	background-color:orange;
	max-width:380px;
	height:450px;
}


td:nth-child(even) {
  background-color:lightblue;
}

td{
	padding:5px;
	background-color:purple;
}

th{
	background-color:blue;
}