body{
	font-family:Arial;
	background-color:#f5f8f2;
	margin:0;
	padding:0;
	display:flex;
	justify-content:center;
}

.container{
	width:800px;
	margin-top:30px;
}

h1{
	text-align:center;
	color:#4F7849;
	margin-bottom:30px;
}

form{
	background-color:#ffffff;
	padding:15px;
	border-radius:10px;
	box-shadow:0px 0px 10px rgba(0,0,0,0.1);
	margin-bottom:20px;
}

input[type="text"], select{
	padding:6px;
	border:1px solid #4b8f29;
	border-radius:6px;
	margin-top:5px;
	margin-bottom:10px;
	width:100%;
}

input[type="submit"]{
	box-shadow:inset 0px 1px 0px 0px #3e7327;
	background:linear-gradient(to bottom, #77b55a 5%, #72b352 100%);
	background-color:#77b55a;
	border-radius:6px;
	border:1px solid #4b8f29;
	cursor:pointer;
	color:#ffffff;
	font-size:15px;
	font-weight:bold;
	padding:8px;
	width:100%;
}

input[type="submit"]:hover{
	background:linear-gradient(to bottom, #72b352 5%, #77b55a 100%);
}

table{
	font-family:"Comic Sans MS", cursive, sans-serif;
	border:2px solid #4F7849;
	background-color:#EEEEEE;
	width:100%;
	text-align:center;
	border-collapse:collapse;
	margin-top:20px;
}

table td{
	border:1px solid #4F7849;
	padding:8px;
	font-size:16px;
	font-weight:bold;
	color:#4F7849;
}

table tr:nth-child(even){
	background:#CEE0CC;
}