body {
	padding:0;
	margin:0;
    background-color: #242132;
}

#score
{
	width:100vw;
	position:absolute;
	padding-top: 5px;

	text-align: center;
	font-size: 100px;
	font-family: sans-serif;
	z-index: 1;
	color: #D4FAC3;
}
#high
{
	width:100vw;
	position:absolute;
	padding-top: 240px;
	text-align: center;
	font-size:50px;
	font-family: sans-serif;
	z-index: 1;
	color: #D4FAC3;
}
#timer
{
	width:100vw;
	position:absolute;
	padding-top: 180px;

	text-align: center;
	font-size:50px;
	font-family: sans-serif;
	z-index: 1;
	color: #D4FAC3;
}
#ball
{
	-webkit-transition: all;
	transition: all;
	position:absolute;
	width:100px;
	height:100px;
	border-radius: 50%;
	background: #FFFF79;
}
#food
{
	-webkit-transition: all;
	transition: all;
	position:absolute;
	width:40px;
	height:40px;
	border-radius: 50%;
	background: orange;
}