body{
	height: 100%;
	font-family: 'Shadows Into Light', cursive;
	background-image: url('pics/battleship.jpg');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}

#header{
	width: 100%;
}

h1{
	font-family: 'Londrina Sketch', cursive;
	font-size:140px;
	margin: 0 auto;
	padding: 10px;
	color: black;
}

button{
	font-family: 'Playfair Display', serif;
	font-size: 25px;
	margin: 0 auto;
	width: 300px;
	background:transparent;
	border: 3px solid grey;
	padding:0.5rem 0.5rem;
	border-top-left-radius: 255px 15px;
	border-top-right-radius: 15px 225px;
	border-bottom-right-radius: 225px 15px;
	border-bottom-left-radius:15px 255px;
	border-bottom: solid 11px #a09c9c;
	border-right: solid 10px #a09c9c;
	transition: .4s;
}

button:hover {
  color: #f72929;
  text-shadow:0px 0px 30px #f72929;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
button:active{
    -ms-transform: translateY(2px);
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.15);
    border-bottom: solid 3px #bd6565;
}

p{
	margin: 0 auto;
	font-family: 'Shadows Into Light', cursive;
	font-size: 35px;
	text-align: center;
	margin-bottom: 8px;
	color: #2834f1;
	font-weight: bolder;
}

#inputField{
	font-family: 'Shadows Into Light', cursive;
	font-size: 25px;
	text-align: center;
	min-width: 150px;
	margin: 0 auto;
	margin-bottom: 30px;
	border-top-left-radius: 255px 15px;
	border-top-right-radius: 15px 225px;
	border-bottom-right-radius: 225px 15px;
	border-bottom-left-radius:15px 255px;
}

#gameboard-row{
	height:500px;
	width:100%;
	margin-top: 15px;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}

#gameboard-row .container{
	width:100%;
	height:100%;
	margin: 0 auto;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}

.game-row{
	width:100%;
	height:10%;
}

.game-square{
	border:1px solid black;
	width:10%;
	height:100%;
	display: inline-block;
	background-color: #b4ebf5c2;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	border-top-left-radius: 255px 15px;
	border-top-right-radius: 15px 225px;
	border-bottom-right-radius: 225px 15px;
	border-bottom-left-radius:15px 255px;
}

#left-display{
	text-align: center;
	height: 100%;
}

#shipBox{
	height:18%;
	margin: 7px auto;
	font-size: 20px;
	border: 2px solid grey;
	background-color: #ffffffdb;
	border-top-left-radius: 255px 15px;
	border-top-right-radius: 15px 225px;
	border-bottom-right-radius: 225px 15px;
	border-bottom-left-radius:15px 255px;
}

.miniDisplay{
	height:40%;
	text-align: center;
	margin: 0 auto;
}

#shipTitle{
	font-weight: bolder;
  font-size: 25px;
  padding-top: 8px;
  margin-bottom: 5px;
}

#displayRow00{
	height: 8%;
	border-top: 2px solid black;
	border-bottom: 2px solid black;
	background-color: #44dbf7;
	margin: 0 auto;
	font-size: 25px;
	display: block;
	text-align: center;
}

#displayRow10{
	height: 8%;
	border-top: 2px solid black;
	border-bottom: 2px solid black;
	background-color: #fdc55d;
	margin: 0 auto;
	font-size: 25px;
	display: block;
	text-align: center;
}

#displayRow01{
	height: 90%;
}

#displayRow11{
	height: 90%;
}

.mainBoard1{
	width: 100%;
}

#mainBoard2{
	width: 100%;
}

#mainBoard1{
	width: 100%;
}

#ack{
	margin: 20px auto;
	text-align: center;
	color: black;
}

#start2{
	height:70px;
}