body {
	font-family: "Arial", sans-serif;
	margin: 0;
	padding: 0;
}

section {
	text-align: center;
}

.game--container {
	display: grid;
	grid-template-columns: repeat(3, auto);
	width: 306px;
	margin: 50px auto;
}

.cell {
	font-family: "Permanent Marker", cursive;
	width: 100px;
	height: 100px;
	box-shadow: 0 0 0 1px #333333;
	border: 1px solid #333333;
	cursor: pointer;
	line-height: 100px;
	font-size: 60px;
}

#black {
	background-color: black;
	width: 100%;
	height: 437px;
	overflow-y: scroll;
}

.white {
	margin: 0;
	padding: 0;
	font-family: "Permanent Marker", cursive;
	background-color: black;
	color: #ffffff;
}

.no-scroll {
	z-index: 1;
	position: sticky;
	top: 0;
}

#gamelog {
	font-size: 20px;
}

#container-2 {
	margin: 0;
}