* {
	font-family: var(--poppins);
	user-select: none;
}

body {
	display: flex;
	height: 100vh;
	width: 100vw;
	background: #111;
}

div,body,p {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.game-container {
	margin: auto;
	box-shadow: 0px 0px 15px #000;
	border: 2px solid #000;
	cursor: crosshair;
}

.game-info {
	background: #000;
	width: 600px;
	padding: 8px;
	font-family: var(--poppins);
	text-align: right;
	color: #fff;
}

.game-info span{
	padding: 10px;
}

.game {
	width: 600px;
	height: 600px;
	background: #222;
}

.bot {
	background: #fff;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: 2px solid #000;
	box-shadow: 0px 0px 10px #999;
	display: flex;
	position: relative;
	transition: top 0.36s, left 0.36s
}
