body {
    background-color: #000;
}

div#board {
    position: relative;
    width: 1024px;
    height: 863px;
    margin: auto;
    background: url('../images/board.jpg') no-repeat;
}

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

table {
    position: absolute;
    left: 173px;
    top: 98px;
    border-spacing: 0;
}

td {
    width: 94px;
    height: 94px;
}

form {
    position: absolute;
    bottom: 0;
    right: 0;
    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("../images/ship.png") no-repeat center center;
}

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