@import url(https://fonts.googleapis.com/css?family=Roboto:400,700);

html,
body {
	height: 100%;
	width: 100%;
	font-family: Roboto;
}
* {
	box-sizing: border-box;
}
body {
	margin: 0;
	padding: 20px;
}

.root {
	width: 500px;
	margin: 0 auto;
	background-color: #dae6f1;
	border: 1px solid #c9c9c9;
	padding: 20px;
	border-radius: 5px;
	box-shadow: 0 0 7px #9d9d9d;
	min-height: 500px;
}

.heading {
	margin: 0;
	text-align: center;
	margin-bottom: 10px;
	font-size: 30px;
	color: #6f6f6f;
}

.title {
	color: #5d5a5a;
}

.status {
	background: #00c8c8;
	padding: 14px;
	display: inline-block;
	border-radius: 3px;
	font-size: 15px;
	font-weight: 800;
	color: white;
	letter-spacing: 1px;
}

.grid-container,
.selection-container {
	margin: 0 auto;
	position: relative;
	text-align: center;
}
.cell-container {
	display: flex;
	flex-flow: row wrap;
	padding: 10px;
	background-color: white;
	color: white;
}
.cell {
	width: 150px;
	height: 150px;
	display: flex;
	flex-wrap: wrap;
	color: black;
	justify-content: center;
	align-items: center;
}

.cell-0,
.cell-1,
.cell-2,
.cell-3,
.cell-4,
.cell-5 {
	border-bottom: 16px solid #acf5e6;
}

.cell-0,
.cell-1,
.cell-3,
.cell-4,
.cell-6,
.cell-7 {
	border-right: 16px solid #acf5e6;
}

.cell-2,
.cell-5,
.cell-8 {
	width: 134px;
}

.cell-container .fa-circle-o {
	color: #2d3e4f;
	font-size: 8em;
}

.cell-container .fa-times {
	color: #18bc9c;
	font-size: 9em;
}

.button,
.play-again {
	background: #00c8c8;
	outline: none;
	opacity: 0.6;
	border-radius: 6px;
	border: 2px solid transparent;
	font-size: 1.2em;
	padding: 10px;
	min-width: 100px;
	cursor: pointer;
	color: white;
}

.replay.gameOver {
	z-index: 1;
}

.button2 {
	margin-left: 12px;
}
.play-again {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	width: 100%;
	color: #ffffff;
	background: #191919;
}

.button1:hover,
.button2:hover {
	opacity: 1;
	border: 2px dashed rgba(230, 230, 230, 0.5);
	color: white;
}

.hide {
	display: none;
}

.replay {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: -1;
}
