* {
	margin:0px;
	padding:0px;
	box-sizing:border-box;
	cursor:default;
	font-family:"Helvetica";
	text-decoration:none;
}
*:focus {
    outline:none;
}
body {
	width:100vw;
	height:100vh;
	padding:0px 500px 0px 0px;
	position:relative;
	display:flex;
	flex-direction:column;
	touch-action: pan-x pan-y;
	align-items:center;
	background:#000;
}
	#ball {
		width:50px;
		height:50px;
		background:#FFF;
		border-radius:25px;
		-webkit-box-shadow: 0px 0px 50px 0px rgba(255,255,255,1);
		-moz-box-shadow: 0px 0px 50px 0px rgba(255,255,255,1);
		box-shadow: 0px 0px 50px 0px rgba(255,255,255,1);
		
		position:absolute;
	}