body {
	padding: 5vh 0;
	margin: 0;
	background-color: black;
	background-image: linear-gradient(60deg, #333 0%, #111 25%, #111 75%, #333 100%);
	background-repeat: no-repeat;
	color: black;
	font-family: 'Big Shoulders Display', 'Arial', 'Helvetica', 'Verdana', sans-serif;
	font-size: 3vw;
	line-height: 1.1em;
	text-align: center;
}
#board {
	width: 96vw;
	margin: 2vw auto;
	padding: 3vw 1vw 8vw 1vw;
	border-radius: 5vw;
	background-color: #ddd;
	box-shadow: 0px 4px 24px 12px rgba(5, 5, 5, 0.8);
}
p {
	color: #161616;
	font-size: 1.2em;
	hyphens: auto;
}
a {
	color: gray;
}
table {
	width: 98%;
	background-color: #f5fef8;
	border-collapse: collapse;
	margin: 4vh auto 1vh auto;
}
td {
	position: relative;
	background-color: rgba(244, 255, 247, 1);
	border: 2px solid gray;
}
td:after {
	content: '';
	display: block;
	margin-top: 100%;
}
.cell {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	line-height: 8vh;
	height: 100%;
}
.cell p {
	line-height: 1;
	padding: 10px;
	font-weight: bold;
	display: inline-block;
	vertical-align: middle;
	text-align: center;
}
h1 {
	font-family: 'Anton', serif;
	font-size: 3em;
	line-height: 1em;
	color: #eee;
	padding: 3vh 0 0 0;
	margin: 0;
}
.ctr {
	background-color: rgba(238, 168, 168, 0.1);
	box-sizing: border-box;
	border-radius: 100%;
	border: 5px solid rgba(238, 168, 168, 0.2);
}
.chipped {
	background-color: rgba(238, 168, 168, 1) !important;
	border-radius: 100%;
	transition: all .25s ease-in-out;
}
.win {
	text-shadow: 0px 0px 12px rgba(228, 255, 105, 0.8);
}
#message {
	color: #f5fef8;
	width: 88vw;
	margin: 1vh auto;
	font-size: 1.2em;
	line-height: 1.2em;
}
#credits {
	display: block;
	margin: 0 auto;
	font-size: 0.8em;
	color: gray;
}
@media screen and (min-width: 1400px) {
	#board {
		width: 48vw;
		font-size: 1.5vw;
	}
	#message, #credits {
		width: 48vw;
		font-size: 1.2em;
	}
	#credits {
		width: 60vw;
		font-size: 0.9em;
	}
}