* {
	margin:0px;
	padding:0px;
	box-sizing:border-box;
	cursor:default;
	font-family:"Helvetica";
	text-decoration:none;
}
*:focus {
    outline:none;
}
html {
	overflow-x: hidden;
}
body {
	touch-action: pan-x pan-y;
	
	width:100%;
	height:100vh;
	padding:0px 0px 0px 0px;
	position:relative;
	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content: center;
	background:#323231;
	overflow-x:hidden;
	letter-spacing:1px;
}
	#square {
		width:500px;
		height:500px;
		border-width:0px 1px 0px 1px;
		border-style:solid;
		border-color:#FFF;
		display:flex;
		flex-direction:column;
	}
		.balls {
			width:20px;
			height:20px;
			background:#FFF;
			border-radius:50%;
		}
		
  
  