body
{
	background-color: black;
}
div#board
{
	position: relative;
	width: 1024px;
	height: 863px;
	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;
}
#winMessage {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.win-content {
    background: #000;
    color: rgb(83, 175, 19);
    padding: 28px 36px;
    text-align: center;
    border-radius: 12px;
    border: 2px solid rgb(83, 175, 19);
    box-shadow:
        0 0 20px rgba(83, 175, 19, 0.35),
        0 0 60px rgba(83, 175, 19, 0.2);
}

.win-content h1 {
    margin: 0 0 20px;
    color: inherit;
    text-shadow: 0 0 8px rgba(83, 175, 19, 0.6);
}
#restartButton {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background: #000;
    color: rgb(83, 175, 19);
    border: 2px solid rgb(83, 175, 19);
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(83, 175, 19, 0.35);
    transition: all 0.2s ease;
}
#restartButton:hover {
    background: rgb(83, 175, 19);
    color: #000;
    box-shadow: 0 0 16px rgba(83, 175, 19, 0.6);
}
#restartButton:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(83, 175, 19, 0.35), 0 0 16px rgba(83, 175, 19, 0.6);
}