
body {
	background-color: black;
}


table, th, td {
   border: 1px solid green;
   text-align: center;
   color: #FFFFFF;
   font-size: 48px;
   text-shadow: 2px 2px #888;
   font-family: arial, Helvetica, sans-serif;
} 

#board {
	position: relative;
	width: 1024px;
	height: 863px;
	margin: auto;
}

#messageArea {
	position: absolute;
	top: 0px;
	left: 0px;
	color: rgb(83, 175, 19);
}
.hit {
	background: url("../img/ship.png") no-repeat center center;
}
.miss {
	background: url("../img/miss.png") no-repeat center center;
}
table {
	border-spacing: 0px; 
	/* could use border-collapse instead */
	/* border-collapse: collapse; */
	position: absolute;
	left: 173px;
	top: 100px;
}
td {
	width: 94px;
	height: 94px;
}
form {
	position: absolute;
	left: 640px;
	top: 20px;
	padding: 15px;
	background-color: rgb(83, 175, 19);
}
form input {
	background-color: rgb(152, 207, 113);
	border-color: rgb(83, 175, 19);
	font-size: 1em;
}
