body {
	background-color: #282c34;
}
h1 {
	text-align: center;
	font-size: 4em;
	font-family: monospace;
	user-select: none;
	color: rgb(194, 194, 194);
}
.gameboard {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(3, 1fr);
	width: 300px;
	height: 300px;
	margin: auto;
	background-color: #282828;
	transform-origin: center;
	box-shadow: 0 0 10px rgba(0,0,0,0.5);
}
.box {
	user-select: none;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	border: 1px solid black;
	color: darkgray;
	font-family: 'Comic Sans MS', sans-serif;
	font-size: 70px;
}
.box:hover {
	background-color: rgba(0,0,0,0.1);
}
.box:active {
	background-color: rgba(0,0,0,0.2);
}
#buttons {
	user-select: none;
	display: flex;
	justify-content: center;
	align-items: center;
}
#vsComputer {
	padding: 15px 16px;
}
#twoPlayer {
	padding: 15px 24px;
}
button {
	background-color: #007bff;
	color: rgb(194, 194, 194);
	border: none;
	border-radius: 5px;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	margin-top: 20px;
	margin-left: 10px;
	margin-right: 10px;
}
button:hover {
	background-color: #0069d9;
}
button:active {
	background-color: #0062cc;
	transform: translateY(2px);
}
.banner {
	user-select: none;
	position: absolute;
	font-family: 'Courier New', Courier, monospace;
	font-size: 50px;
	font-weight: bold;
	text-align: center;
	top: 280px;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: rgba(26, 26, 26, 0.9);
	color: rgb(194, 194, 194);
	padding: 30px;
	border-radius: 10px;
	text-shadow: 0 0 10px rgba(0,0,0,0.5);
	box-shadow: 0 0 10px rgba(0,0,0,0.5);
}