#tictactoeContainer {
	width: 45rem;
	margin: 0 auto;
}
table {
	border-collapse: collapse;
	margin: 3rem auto;
	background-color: #101010;
}
td {
	width: 15rem;
	height: 15rem;
	text-align: center;
	font-size: 5rem;
	border: 1px solid #666;
	cursor: pointer;
	margin: 0 auto;
}
#tictactoe-scoreboard {
	display: flex;
	justify-content: space-between;
	width: 100%;
	font-family:Calibri;
	margin-top: 1rem;
}
#tictactoe-scoreboard span {
	margin-right: 0.625rem;
	color: #666;
}
.player-symbol, .bot-symbol {
	color: #fdd33c;
	font-family:Calibri;
}