*{
	padding: 0;
	margin: 0;
	border: 0;
}
body {
	width: 100%;
	height: 100%;
}
#container {
	position: relative;
	width: 620px;
	height: 450px;
	margin: 0 auto;
	margin-top: 100px;
	border-radius: 1px;
}

#game {
	position: relative;
	width: 450px;
	height: 450px;
	border-radius: 5px;
	display: inline-block;
	background-color: #ffe171;
	box-shadow: 0 0 10px #FFE171;
	
}
 #game div {
 	position: absolute;
 	width: 149px;
 	height: 149px;
 	box-shadow: 1px 1px 2px #777;
 	background-color: #20a6fa;
 	color: #fff;
 	text-align: center;
 	font-size: 150px;
 	line-height: 150px;
 	cursor: pointer;
 	-webkit-transition: .3s;
 	-moz-transition: .3s;
 	-ms-transition: .3s;
 	-o-transition: .3s;
 	transition: .3s;
 	
 }
#game div:hover {
	color: #FFE171;
	
}

#control {
	width: 150px;
	height: 450px;
	display: inline-block;
	float: right;
}

#control rowspan {
	height: 25px;
	font-size: 20px;
	color: #222;
	margin-top: 10px;
}

#start {
	display: inline-block;
	font-size: 28px;
	width: 100px;
	height: 28px;
	background-color: #20A6FA;
	color: #FFE171;
	text-shadow: 1px 1px 2px #FFE171;
	border-radius: 5px;
	box-shadow: 2px 2px 5px #4c98f5;
	text-align: center;
	cursor: pointer;
	
}

#reset {
	display: inline-block;
	font-size: 28px;
	width: 100px;
	height: 28px;
	background-color: #20A6FA;
	color: #FFE171;
	text-shadow: 1px 1px 2px #FFE171;
	border-radius: 5px;
	box-shadow: 2px 2px 5px #4C98F5;
	text-align: center;
	cursor: pointer;
}

#d1 {
	left: 0;
	
}
#d2 {
	left: 150px;
}
#d3 {
	left: 300px;
}
#d4 {
	top: 150px;
}
#d5 {
	top: 150px;
	left: 150px;
}
#d6 {
	top: 150px;
	left: 300px;
}
#d7 {
	top: 300px;
}
#d8 {
	left: 150px;
	top: 300px;
}
