@import url('https://fonts.googleapis.com/css?family=Gloria+Hallelujah');
*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
html, body{
	width: 100%;
	height: 100%;
	min-height: 100%;
	font-family: 'Gloria Hallelujah', cursive;
	font-size: 100%;
	background: linear-gradient(to bottom, black 0%, blue 100%);
	overflow: hidden;
}
.text{
  position: absolute;
  z-index: 10;
  bottom: 3%;
  left: 3%;
}
.text h1{
  font-size: 1.5em;
  color: #000;
}
.text p{
  font-size: 1em;
  color: #000;
}
.text p span{
  color: #000;
}
@keyframes animationRocket {
	0%{
		transform: rotate(90deg);
		left: -40%;
		top: calc(50% - 200px);
		opacity: 1;
	}
	49%{
		transform: rotate(90deg);
		left: 120%;
		top: calc(50% - 200px);
		opacity: 1;
	}
	50%{
		transform: rotate(90deg);
		left: 120%;
		opacity: 0;
	}
	51%{
		opacity: 0;
		top: 100%;
		left: calc(50% - 130px);
		transform: rotate(0deg);
	}
	52%{
		opacity: 1;
		top: 100%;
		left: calc(50% - 130px);
		transform: rotate(0deg);
	}
	99%{
		opacity: 1;
		top: -100%;
		left: calc(50% - 130px);
		transform: rotate(0deg);
	}
	100%{
		opacity: 1;
		top: -100%;
		left: calc(50% - 130px);
		transform: rotate(0deg);
	}
}
.container{
	width: 260px;
	height: 400px;
	position: absolute;
	top: calc(50% - 200px);
	left: calc(50% - 130px);
	transform: rotate(90deg);
	animation: animationRocket 8s linear infinite;
}
.rocket{
	width: 210px;
	height: 210px;
	top: 50px;
	left: 22px;
	position: absolute;
	z-index: 2;
	background-color:deepskyblue;
	border-radius: 210px 0 210px 0;
	transform: rotate(-45deg);
}
.rocket:{
	content: "";
	width: 83px;
	height: 5px;
	position: absolute;
	bottom: 23px;
	left: -16px;
	background-color: ;
	transform: rotate(45deg);

}
.window{
	width: 90px;
  height: 90px;
  position: absolute;
  z-index: 3;
  top: 53px;
  left: 67px;
  background-color: black;
  border-radius: 50%;
  border: 16px solid blue;
}
@keyframes animationFire {
	0%{
		transform: translateX(0px);
	}
	40%{
		transform: translateX(1px);
	}
	80%{
		transform: translateX(-1px);
	}
	100%{
		transform: translateX(0px);
	}
}

}

/*A red border is shown when the button changes the
border-width value > 0*/
.show-div{
  border-style: solid;
  border-width: 0px;
  border-color: yellow;
}

/*Changes the button's font size*/
.btn{
  font-size:20px;
 	background-color: black;
  color: white;
  padding: 10px;
}