body {
    background-color: black;
   }
   div#board {
    position: relative;
    width: 1024px;
    height: 863px;
    margin: auto;
    background: url("img/board.jpg") no-repeat;
    border-radius: 15px;
   }
   div#messageArea {
    position: absolute;
    top: 0px;
    left: 0px;
    color: rgb(83, 175, 19);
   }
   table {
    position: absolute;
    left: 173px;
    top: 98px;
    border-spacing: 0px;
   }
   td {
    width: 94px;
    height: 94px;
   }
   form {
    position: absolute;
    bottom: 0px;
    right: 0px;
    padding: 10px;
    background-color: rgb(83, 175, 19);
    border-radius: 15px;
   }
   form input {
    background-color: rgb(126, 184, 84);
    border-color: rgb(49, 48, 48);
    font-size: 1em;
    border-radius: 15px;
   }
   .hit {
    background: url("img/ship.png") no-repeat center center;
   }
   .miss {
    background: url("img/miss.png") no-repeat center center;
   }
   