body {
	background-color: #000;
	font-family: Arial, Helvetica, sans-serif;
	color: red;
}

#gameArea {
	position: absolute;
	left: 50%;
	top: 50%;
}

#canvas1 {
	background-image: url("night_sky.jpg");
	background-size: contain;
	width: 100%;
	height: 100%;
}

.modal{
	display: none;
	background-color: #CCC;
	border-radius: 5px;
	box-shadow: 2px 2px 2px rgba(0,0,0,0.2);
	height: 50%;
	width: 25%;
	position: fixed;
	top: 20%;
	left: 37%;
	padding: 15px;
	text-align: center;
}

table.highscores {
	width: 100%
}

.highscores td:nth-child(1){
	text-align: left;
}

.highscores td:nth-child(2){
	text-align: right;
}

.highscores tr.green{
	color: green;
}