body {
    background-color: black;
}

main>.container {
    padding: 60px 15px 0;
}
.sticky-nav {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
}

.board {
    position: relative;
    width: 1024px;
    height: 850px;
    margin: auto;
    background: url("/img/board.jpg") no-repeat;
}
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: 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("/img/ship.png") no-repeat center center;
}

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

.jsCode {
    height: 850px;
    width: 1000px;
    
}