body{
	background-color: black;
	background-image: url(https://i.imgur.com/rtR7vl1.jpg);
	background-size: cover;

	
}

.game-screen{
	background-color:rgba(0, 0, 0, .4);
	text-align: center;
	height: 100px;
	margin: 0 auto;
}
#timer{
	color: lightskyblue;
}
#question{
	color:ghostwhite;
}

header{
	font-family: 'Bungee Shade', cursive;
    color: royalblue;
	text-align: center;
	background-color:rgba(0, 0, 0, .1);
}
#message{
	color: red; 
	font-family: 'Red Rose', cursive;

}
#new-question{
	font-family: 'Red Rose', cursive;
}

#modal {
	background-color: rgba(0,0,0,0.4);
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 1;
	/*This puts our modal in front of the body (which has a default z-index setting of `0`*/
	display: none;
	overflow: auto;
	/*If overflow is clipped, a scroll-bar should be added to see the rest of the content*/
}
#modal-textbox {
	background-color: white;
	height: 350px;
	width: 550px;
	border-radius: 2px;
	margin: 150px auto;
	/*This will set the margins for the top and the bottom to 150px (or larger). The right and left will automatically set themselves (and keep the box centered horizontally).*/
	box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
	/*This will give the box some depth.*/
	padding: 2%;
	line-height: 120%;
	font-family: Arial, Helvetica, sans-serif;
	overflow: auto;
		/*If overflow is clipped, a scroll-bar should be added to see the rest of the content*/
}
#modal-footer {
	text-align: right;
}

.modal-buttons {
	padding: 14px 18px;
	background-color: #677996;
	border: none;
	outline: none;
	border-radius: 3px;
	color: white;
	font-family: 'Arial';
	cursor: pointer;
}


