*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

:root {
	--orange: #02C14E;
	--winning-blocks: #2D414B;
}

body {
	color: var(--orange);
	font-family: 'Finger Paint', cursive;
	/*
	background-image: url("bg2.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	*/
}

h1 {
	font-size: 32px;
	text-transform: uppercase;
}

.container {
	padding: 40px;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	/*background-color: #37505C;*/
}

#gameboard {
	width: 450px;
	display: flex;
	flex-wrap: wrap;
	margin-top: 20px;
	margin-bottom: 5px;
}

.box {
	height: 150px;
	width: 150px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--orange);
	font-size: 120px;
	border-right: 2px solid;
	border-bottom: 2px solid;
	background-color: gold;
/*		background-color: #37505C; */
/*
	background-image: url("BigCityJimBoldly.png");
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
	*/

}

.box:nth-child(3n) {
	border-right: none;
}

.box:nth-child(6) ~ .box {
	border-bottom: none;
}

button {
	padding: 10px 20px;
	border-radius: 10px;
	background-color: var(--orange);
	color: #333;
	border-color: var(--orange);
	font-size: 18px
	transition: 200ms transform;
	font-weight: 600;
}

button:hover {
	cursor: pointer;
	transform: translateY(-2px);
}
