#game div {
	border: 1px solid black;
	box-shadow: 0 0 2px black;
	background-color: whitesmoke;
	opacity: .9;
	width: 15%;
	height: 200px;
	margin: 10px;
	display: inline-block;
	border-radius: 5px;
	transition: all .3s;
}

#game div:hover {
	transform: scale(1.02);
	box-shadow: 0 0 5px rgba(0, 0, 0, .7);
}

body {
	margin: 30px;
	background-image: url("thinkingimage.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}

button {
	font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
	font-size: 20px;
	background-color: rgb(98, 156, 214);
	padding: 10px;
	border-style: none;
	border-radius: 10px;
	box-shadow: 0 0 2px black;
	transition: all .1s;
}

button:hover {
	background-color: white;
	color: rgb(98, 156, 214);
}

.restart {
	float: right;
	position: relative;
	top: 250px;
}

#score {
	float: right;
}

#rules {
}
