@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, #004059 0%, #006f95 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 12s linear infinite;
}

.
}
.rocket:after{
	content: "";
	width: 83px;
	height: 5px;
	position: absolute;
	bottom: 23px;
	left: -16px;
	background-color: #000;
	transform: rotate(45deg);
}


}
@keyframes animationFire {
	0%{
		transform: translateX(0px);
	}
	40%{
		transform: translateX(1px);
	}
	80%{
		transform: translateX(-1px);
	}
	100%{
		transform: translateX(0px);
	}
}
.fire{
	width: 75px;
	height: 128px;
	position: absolute;
	z-index: 5;
	bottom: 0;
	left: 90px;
	animation: animationFire .25s linear infinite;
}

.

}


/*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;
}