html, body {
	background: white;
	font-family: 'Bungee';
	color: #424242;
}

h1 {
	font-family: 'Lobster';
	text-align: center;
}

.container {

	width: 400px;
	margin: auto;
}

#message {

	height: 40px;
	font-size: 20px;
	color: red;
	text-align: center;
}

.app-board {

	width: 300px;
	margin: auto;
	position: relative;
}

#curtain {

	position: absolute;
	width: 300px;
	height: 100%;
	opacity: 0.3;
	display: none;
}

.board-row {

	height: 100px;
	margin: 0;
	display: flex;

}

.board-square {

	font-family: 'Outfit';
	font-size: 56px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;

	width: 100px;
	height: 100px;
	display: flex;
	margin: 0;
	border: solid 1px #424242;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

.board-square span {

	display: none;
}

.no-right-border {

	border-right: none;
}

.no-left-border {

	border-left: none;
}

.no-top-border .board-square {

	border-top: none;
}

.no-bottom-border .board-square {

	border-bottom: none;
}

.actions {
	margin-top: 40px;
	display: flex;
	justify-content: center;
}

button#reset {
	background: red;
	padding: 20px;
	cursor: pointer;
	color: white;
	font-family: 'Bungee';
	border-color: red;
}
