body {
	margin: 60px auto;
	height: 100%;
	width: 75%;
	/* background-image: url("../images/battleship.jpg"); */
	background-image: url("../images/radar.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

h1 {
    font-size: 3em;
    font-family:'Helvetica', 'Arial', 'Sans-Serif';
}

p, button, input {
    font-size: 1.5em;
    line-height: 1.4em;
    color: #333;
	margin-bottom:1em;
}

.title {
	text-align: center;
	color: white;
}

#gameboard {
	position:relative;
	margin:0 auto 2em auto;
	width:500px;
	height:500px;
}

#gameboard div {
	position:absolute;
	-webkit-box-sizing: border-box; /* Safari 3.0 - 5.0, Chrome 1 - 9, Android 2.1 - 3.x */
	-moz-box-sizing: border-box;    /* Firefox 1 - 28 */
	box-sizing: border-box;         /* Safari 5.1+, Chrome 10+, Firefox 29+, Opera 7+, IE 8+, Android 4.0+, iOS any */
	background: #f6f8f9; /* Old browsers */
	border: 1px solid #ddd;
	width:50px;
	height:50px;
	cursor: url('../images/crosshairsSmall.png') 50 50, pointer;
}

.quizContainer {
    background-color: #fff;
    height: 40%;
	width: 60%;
	padding: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
	align-items: center;
	align-content: center;
	width: 100%;
}

#image-container {
  margin:auto;
  text-align: center;
  width: 60%;
  height:auto;
}

#question,
#directions {
	font-size: 2rem;
	margin: 10px auto;
	width: 100%;
	padding: 1rem;
}


.question {
    font-size: 18px;
    padding: 5px;
    margin: auto;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-weight: bolder;
    display: none;
}

.answer-button {
    color: #000;
    text-align: center;
    font-size: 1.5rem;
    padding: 5px;
    margin: 10px;
    margin-top: 20px;
    background-color: #B7A5A1;
    border-radius: 8px;
}
