* {
	box-sizing: border-box;
}

body {
	background-color: #000;
	display: flex;
	justify-content: center;
	margin: 0;
	padding: 100px 20px;
}

canvas {
	display: block;
	width: 100%;
	height: 100%;
}

.game-main-wrapper {
	position: relative;
}

.game-wrapper {
	position: relative;
}

.canvas-bg-wrapper {
	position: absolute;
	top: 0;
	left: 0;
}

.game-wrapper {
	position: relative;
	z-index: 9;
}

.canvas-game-wrapper {
	position: relative;
	z-index: 1;
}

.color {
	position: absolute;
	top: 50px;
	left: 500px;
	width: 2em;
	height: 2em;
	border-radius: 100%;
}

.next-items-wrapper {
	/*background-color: #ffffff;*/
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 999;
	height: 50px;
	width: 100%;
}

.next-item {
	position: relative;
	border: 4px solid transparent;
	border-radius: 100%;
}

.next-item-main {
	width: 1.7em;
	height: 1.7em;
}

.next-item-other {
	position: absolute;
	bottom: -8px;
	width: 1em;
	height: 1em;
	border-width: 3px;
}

.next-item span {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 100%;
	opacity: 0.8;
}

.game-history-wrapper {
	color: #7f7f7f;
	min-width: 200px;
	padding: 50px 0 0 20px;
}

.game-how-to-play {
	font-size: 18px;
	line-height: 1.4;
	max-width: 350px;
}

.game-points-wrapper {
	font-size: 18px;
}