body {
	font-size: 150px;
	background-color: #dbdbdb;
	width: 600px;
	margin: auto;
}

.samllFont {
	font-size: 50px;
}

#gameContainer {
	/*top: 200px;*/
	top: 200px;
	position: relative;
	width: 600px;
	height: 600px;
	margin: auto;
}

.box {
	width: 198px;
	height: 198px;
	margin: 0;
	background-color: #eeeeee;
	border: 2px solid black;
	text-align: center;
	user-select: none;
}

.row {
	display: flex;

}

#gameSettings {
	width: 600px;
	height: 180px;
	/*margin: auto;*/
	top: 0;
	position: absolute;
	margin-left: 2460px;
	text-align: center;
	display: none;
}

#score {
	width: 600px;
	height: 180px;
	display: none;
	margin-left: 2460px;
	top: 0;
	position: absolute;
	text-align: center;
}

#reset {
	font-size: 40px;
	display: block;
	text-align: center;
	width: 30%;
	margin: auto;
}

#p1, #p2 {
	font-size: 120px;
}

.pointer {
	font-size: 100px;
	cursor: pointer;
	width: 198px;
}
.pointer:hover, #reset:hover {
	border: 1px solid black;
	border-radius: 45px;
	background-color: #bbb;
}

.selected {
	border: 1px solid black;
	border-radius: 45px;
	background-color: #bbb;
}

#win {
	width: 600px;
	height: 180px;
	background-color: #cccccc;
	position: absolute;
	top: 0;
	text-align: center;
	border: 1px solid black;

	margin-left: 0;
}

#newGame {
	padding: 0 20px 0 20px;
	position: relative;
	top: -35px;
	cursor: pointer;
}

.tog {
	animation-name: wrongBoxTurnRed;
	animation-duration: 0.3s;
}

@keyframes wrongBoxTurnRed {
	0% {background-color: #eeeeee;}
	50% {background-color: red}
	100% {background-color: #eeeeee;}
}

.togWinBox {
	animation-name: winBox;
	animation-duration: 1.3s;
}

@keyframes winBox {
	0% {background-color: #eeeeee;}
	50% {background-color: blue}
	100% {background-color: #eeeeee;}
}

.hideMenu {
	animation-name: hideMenu;
	animation-duration: 1s;
	animation-fill-mode: forwards;
	display: block !important;
}

@keyframes hideMenu {
	0% {margin-left: 0; }
	100% {margin-left: -2460px;}
}

.openMenu {
	display: block !important;
	animation-name: openMenu;
	animation-duration: 1s;
	animation-fill-mode: forwards;

}

@keyframes openMenu {
	0% {margin-left: 2460px;}
	100% {margin-left: 0;}
}
