html, body {
	height: 100%;
	margin: 0;
	padding: 0;
}

body {
	font-size: 10vmin;
	font-family: 'Kanit', sans-serif;
	font-weight: 900;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #f3772d;
}

.board {
	/* margin: 0 auto; */
	display: inline-grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 1vmin;
	/* justify-items: center; */
	/* justify-content: space-around; */
	width: 80vmin;
	height: 80vmin;
	margin-left: 8vmin;
	margin-right: 0;
}

.board > * {
	display: flex;
	background-color: #fffbeb;
	font-size: 10vmin;
	font-family: 'Kanit', sans-serif;
	font-weight: 900;
	color: #505050;
	justify-content: center;
	align-items: center;
	/* border: 1px solid; */
	border-radius: 15%;
	box-shadow: 0 0.5vmin 0 #bc4415;
}

.greytile {
	background-color: grey;
	transition: 1s;
}

.timer {
	position: absolute;
	margin-left: 40vw;
	transform: rotate(270deg);
	color: #fffbeb;
	vertical-align: center;
}

.underline {
	text-decoration: underline;
}
