/* set the background color to really dark gray */
body {
	background-color: #333;
 }

.main-board {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 500px;
	width: 800px;
	background-color: #444;
}

.board {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(3, 1fr);
	width: 300px;
	height: 300px;
	background-color: #555;;
}

.reset {
	font-family: sans-serif;
	color: #000000;
	width: 300px;
	height: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 50px;
	cursor: pointer;
	padding: 1px;
	border-radius: 100px;
	background-clip: padding-box;
	background-color: #ffffff;
	box-shadow: #777777 0px 0px 3px 3px inset;
}

.info {	
	font-family: sans-serif;
	color: #fff;
	width: 300px;
	height: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 50px;
	cursor: pointer;
	padding: 1px;
}

.cell {
	font-family: sans-serif;
	color: #fff;
	width: 100px;
	border-radius: 10px;
	height: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 100px;
	background-clip: padding-box;
	background-color: #111;
	box-shadow: #fff 0px 0px 3px 3px inset;
}