body {
	margin: 0px;
	background-color: rgba(53, 199, 0, 1);
}

#game {
	width: 300px;
    background-color: aqua;
    height: 500px;
	border: 2px solid black;
	margin: 0 auto;
	margin-top: 1%;
	overflow: hidden;
	background-color: rgba(53, 245, 0, 1);
}

#goalie {
	position: relative;
	top: 36px;
	left: 105px;
	z-index: 2;
	height: 90px;
	width: 90px;
}

#ball {
	position: relative;
	margin-left: -80px;
	left: 115px;
	top: 500px;
	z-index: 2
}

#net {
	width: 300px;
    height: 90px;
    top: -90px;
    position: relative;
	z-index: 1
}
#score {
	text-align: center;
    font-family: impact;
    margin: 0 auto;
    font-size: 40px;
}
#highscore{
	text-align: center;
    font-family: impact;
    margin: 0 auto;
    font-size: 20px;
}

p {
	margin: 0 auto;
	text-align: center;
}

.text {
	font-family: impact;
}
.text:hover {
	cursor: default;
}
#top {
    letter-spacing: 6px;
    font-size: 37px;
}