@charset "utf-8";
/* CSS Document */

body {background-color: black;
	color: #4bab08;
	}
div#board-play { /* Игровое поле */
	position: relative;
	width: 1024px;
	height: 863px;
	margin: auto;
	background: url("board-play.jpg") no-repeat;
	text-align: center;
	}
div#messageBoomBaah { /* Вывод сообщения после выстрела */
	position: relative;
	top: 22px;
	color: rgb(83, 175, 19);
	font-size: 3em;
}
table { /* Сектор обстрела акватории */
	position: absolute;
	left: 173px;
	top: 98px; 
	border-spacing: 0px;
}
td { /* Отдельная ячейка зоны поражения */
	width: 94px;
	height: 94px;
}
div#form {
	text-align: center;
	}
form { /* Ввод данных выстрела ячейки */
	display: inline-block;
	position: relative;
	top: 5px;
	/* right: 0px; */
	padding: 15px;
	margin: 0 auto;
	background-color: rgb(83, 175, 19);
}
form input {
	background-color: rgb(152, 207, 113);
	border-color: rgb(83, 175, 19);
	font-size: 2em;
}
.boom { /* Попадание в кораблик */
background: url("korablik.png") no-repeat center center;
}
.promah { /* Выстрел мимо кораблика */
background: url("promah.png") no-repeat center center;
}