body {
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	background-image: url(images/space_bkg.jpg);
	background-size: cover;
    background-repeat: no-repeat;
    overflow:hidden;
}

.squirrel {
	
	position:absolute;
	top:0px; left:0px;
	z-index:100;
	width:100%; height:100%;
}

.clothedEye {
	position:absolute;
	bottom:10px;
	left:10px;
	z-index:1020;
	width:120px; height:120px;
	background-color:none;
}
.v2 {
  position: absolute;
  bottom: 140px;
  left: 20px;
  z-index: 3000;
  color: white;
}
#html_squirrel {
	position:absolute;
	width:460px;
	height:326px;
	float:left;
	z-index:10;
}
#lasers {
	position:absolute;
	z-index:5;
}
.html_laser {
	position:absolute;
	width:50px;
	height:5px;
	float:left;
	z-index:1;
	background-color: lightgreen;

	animation: lasershoot 2s forwards;
}
@keyframes lasershoot {
	100% {
	-webkit-transform: translate(-3000px, 0);
    -moz-transform: translate(-3000px, 0);
    -o-transform: translate(-3000px, 0);
    -ms-transform: translate(-3000px, 0);
	transform: translate(-3000px, 0);
}
}