
body {
  background-color: black;
  font-family: Verdana, sans-serif;
}

div#board{
  position: relative;
  width: 1024px;
  height: 863px;
  margin: auto;
  background: url("board.png");
}

div#messageArea {
  position: absolute;
  top: 0px;
  left: 280px;
  color: rgb(83, 175, 19);
  font-size: 20pt;
}

table {
  position: absolute;
  left: 178px;
  top: 92px;
  border-spacing: 0px;
}
td {
  width: 94px;
  height: 94px;
}

form {
  position: absolute;
  bottom: 0px;
  right: 0px;
  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;
}

.hit {    
  background: url("hit.png");
  background-repeat: no-repeat;
  background-position: center center;
}

.miss {
  background: url("miss.png") center center;
  background-repeat: no-repeat;
  background-position: center center;
}


