@import url("https://fonts.googleapis.com/css?family=Inter:400,500,600,700");

*, html, body {
	padding: 0;
	margin: 0;
	font-family: "Inter";
	font-size: 13px;
}

body {
	background: #444;
}

canvas {
	margin: 20px 0 0 auto;
	font-family: "Inter";
	background: #151b2a;
	/* width: 100%; */
}

.center {
	text-align: center;
}

.flex {
	display: flex;
}

.spin, .auto {
	border: 0;
	color:#FFF;
	border-radius: 4px;
	padding: 10px 30px;
	background: rgb(61, 39, 189);
	box-shadow: 3px 0 5px  rgb(61, 39, 189);
	cursor: pointer;
	-webkit-transition: all 250ms ease-in;
	transition: all 250ms ease-in;
}

.spin:focus, .auto:focus {
	background: rgb(49, 30, 161);
	box-shadow: 3px 0 5px  rgb(49, 30, 161);
	transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
}

.active.auto {
	background: rgb(26, 23, 41);
	box-shadow: 3px 0 5px  rgb(26, 23, 41);
}

.mt-2 {
	margin-top: 20px;;
}

.container {
	width: 1100px;
	margin: 0 auto;
    overflow: hidden;
}

.float-left {
	float: left;
}

.float-right {
	float: right;
}

.bottom {
	margin-top: 20px;
	padding: 0 25px;
}

.game-holder {
	width: 1100px;
	margin: 20px auto;
	text-align: center;
	padding: 20px;
}

#game {
	width: 900px;
	padding: 20px;
	text-align: center;
	margin: 50px auto;
	background: #111;;
	position: relative;
}

.cpt {
	cursor: pointer !important;
}
