.gameHeader {
	font-family: 'Kaushan Script', cursive;
	font-size: 35px;
	color: #eeeeee;
	margin: 0;
}

.alert-light {
	background-color: #00adb5;
	border: solid #222831;
	border-width: 0 0 10px 0;
}

input::placeholder {
	color: #856404;
}


/* Contains all windows and gameTable
   Defines size and location
   gameTable inherit size and absolute location directly
   windows inherit size and absolute location via the class 'window' (interface)
*/

#container {
	position: relative;
	width: 992px;
	height: 602px;
	left: 50%;
	transform: translateX(-50%);
}

#gameTable {
	margin-top: 30px;
	border: 5px solid #222831;
	padding: 10px 10px 10px 10px;
	border-collapse: separate;
	border-radius: 6px;
	background-color: #eeeeee;
}

.window {
	position: absolute;
	left: 0;
	top: 0;
	width: inherit;
	height: inherit;
	z-index: 5;
	border-radius: 7px;
	background-color: #222831;
	animation: fadein 0.3s ease-in 1;
}

@keyframes fadein {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.windowHeader {
	background-color: #00adb5;
	border-radius: 7px;
}

.windowHeader>div {
	display: inline;
	color: white;
	border-radius: 7px;
	margin-left: 37%;
	font-family: 'Kaushan Script', cursive;
	font-size: 22px;
}

#aboutCloseBtn {
	z-index: 10;
}

.card img {
	width: 150px;
	height: 180px;
}

h1 {
	margin-top: 0px;
}

body {
	background-color: #393e46;
	background-size: cover;
}

.stopWatch {
	font-size: 30px;
	color: #eeeeee;
	background-color: #00adb5;
	border-radius: 3px;
	border-style: solid;
	margin-top: 12px;
	padding: 0 5px 0px 5px;
	border-width: 0px 6px 6px 6px;
	border-color: #222831;
}

.bestScore {
	background-color: #00adb5;
	color: #eeeeee
}
