* {
	overflow: hidden;
	cursor: crosshair;
}
html, body {
	background-color: black;
	width: 100%;
	height: 100%;
}
.objects {
	position: absolute;
	top: -20px;
	width: 20px;
	height: 20px;
	background-color: white;
	animation: fall 3s linear forwards;
}
@keyframes fall {
	from {
		top: -20px;
	}
	to {
		top: calc(100% + 20px);
	}
}
#start {
	width: 30%;
	height: 30%;
	background-color: black;
	border: solid 3px white;
	border-radius: 21%;
	position: absolute;
	left: 35%;
	top: 35%;
	z-index: 999;
}
::selection {
	background-color: white;
	color: black;
}
p {
	color: white;
	font-family: Courier New;
}
#play {
	position: absolute;
	left: calc(50% - 1.5em);
	top: calc(50% - 1.5em);
	font-size: 3em;
}
#score {
	position: absolute;
	left: 0;
	bottom: 4%;
	font-size: 1.2em;
}
#highscore {
	position: absolute;
	right: 0;
	bottom: 4%;
	font-size: 1.2em;
}