body {
	width:  95%;
	height:  100%;
	color: #FFF;
	text-align:  center;
	font-family:Impact, Charcoal, sans-serif; 
	background-repeat: no-repeat;
	background-size: cover;
	background-color: #000;
}

body a {
	color:  green;
}

#topBar {
	position: absolute;
	top: 0px;
	width: 100%;
	display: flex;
	justify-content: space-between;
}

#screen {
	display: flex;
	margin: auto;
	background-color:  #000;
	position: relative;
	height:  100%;
	width: 100%;
}

#playing_area {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

#message{
	position: absolute;
	text-align: center;
	margin: auto;
	top: 25%;
	left: 50%;
	width: 75%;
	border:  solid 20px #FFF;
	border-radius: 20px;
	padding: 20px;
	transform: translateX(-50%);
	z-index: 10;
	background-color: black;
}

#info {
	width: 25%;
	height:  100%;
	color:  #FFF;
	padding: 0px 30px;
}

#stream {
	margin-top: 20px;
	margin-left: auto;
	margin-right: auto;
	width: 150px;
	height: 150px;
	background-color: darkgray;
}

.actions {
	margin-top: 20px;
}

#spaceship {
	width: 75px;
	height: 75px;
	background-image: url('../images/spaceship.png');
	background-repeat: no-repeat;
	background-size: cover;
	position:  absolute;
	bottom: 40px;
	/* transform: translateX(-50%); */
	z-index: 10;
}

#spaceship.explosion {
	background-image: url('../images/explosion.png');	
}

.splatter {
	position:  absolute;
	width: 75px;
	height: 75px;
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url('../images/splatter.png');
	z-index: 10;
}

.star{
	position: absolute;
	height: 1px;
	width: 1px;
	background-color:  #FFF;
}

#lives{
	margin:  auto;
	width: 100%;
	height: 0px;
	padding-bottom: 80px;
}

.life-meter{
	display: inline-block;
	margin: 0px 10px;
	width: 25px;
	height: 25px;
	background-image: url('../images/spaceship.png');
	background-repeat: no-repeat;
	background-size: cover;
}

.beam {
	position: absolute;
	background-color:  #FFF;
	height: 50px;
	width:  10px;
	top: 80%;
}

.alien {
	position: absolute;
	width: 100px;
	height: 100px;
	top: 0;
}