body {
	background-color: #eeeeee;
}

#header, #jumbotron {
	text-align: center;
	box-shadow: 10px 10px 20px #37474f;
	border-radius: 20px;
	margin: 0 auto;
	max-width: 960px;
	width: 95%;
	padding: 20px;
	margin-top: 20px;
	margin-bottom: 20px;
}

#header {
	color: white;
	background-color: #0070ba;
}

h1, h2 {
	margin-bottom: 0px;
}

h2 {
	font-weight: bold;
}

#jumbotron {
	height: 500px;
	color: black;
	background-color: white;
	background-repeat: no-repeat;
	background-position: 50% 20px;
	background-size: 60%;
}

#top-row {
	height: 50px;
}

#timer {
	height: 50px;
	margin: 0 auto;
	text-align: center;
}

#main-game-panel {
	height: 275px;
	text-align: center;
}

#start-form {
	margin-bottom: 0px;
}

label.form-header {
	font-size: 24px;
	margin-top: 15px;
	margin-bottom: 5px;
}

#state {
	margin-bottom: 10px;
}

#bottom-row {
	height: 50px;
}

.input {
	display: none;
	margin-bottom: 10px;
	min-height: 50px;
}

#input1 {
	margin-top: 20px;
}

.button.button-primary {
	margin: 0 auto;
	font-size: 14px;
	border: none;
	width: 250px;
	height: 50px;
	background-color: #0070ba;
	box-shadow: 5px 5px 20px #37474f;
}

.button.button-primary:hover{
	background-color: #2a4b88;
}

.button.button-primary:focus{
	background-color: #2a4b88;
}

#start-button {
	margin-top: 0px;
	display: block;
}

#replay-button, #reset-button, #continue-button {
	display: none;
	margin-top: 10px;
}

#replay-button {
	margin-top: 15px;
}

@media screen and (max-width: 480px) {

	#header, #jumbotron {
		margin-top: 10px;
		margin-bottom: 10px;
	}

	#jumbotron {
		height: 470px;
	}

	.input {
		margin-bottom: 0px;
	}

	.button.button-primary {
		font-size: 12px;
		width: 200px;
		height: 38px;
		box-shadow: 5px 5px 20px #37474f;
	}

	#start-button {
		margin-top: 10px;
	}

	#replay-button {
		margin-top: 0px;
	}

	label.form-header {
		margin-top: 5px;
		margin-bottom: 5px;
	}

	h4 {
		margin-bottom: 5px;
	}
}