body {
	margin: 0;
	width: 100%;
	height: 100vh;
	 
	color: #fff;
	background: linear-gradient(-45deg,#ff000057, rgba(6, 101, 196, 0.452), #10efff9c, #91069175,  #ff738a);
	background-size: 400% 400%;
	animation: gradientBG 10s ease infinite;
}
.container {
  height: 100vh;
  display: flex;
  justify-content: center;
}

 
@keyframes gradientBG {
	0% {
		background-position: 0% 90%;
	}
	50% {
		background-position: 100% 10%;
	}
	100% {
		background-position: 10% 10%;
	}
}
 
@keyframes showTopText {
  0% { transform: translate3d(0, 100%, 0); }
  40%, 60% { transform: translate3d(0, 50%, 0); }
  100% { transform: translate3d(0, 0, 0); }
}
@keyframes showBottomText {
  0% { transform: translate3d(0, -100%, 0); }
  100% { transform: translate3d(0, 0, 0); }
}
.animated-title {
  color: rgb(255, 255, 255);
  font-family: 'Major Mono Display', monospace;
font-family: 'Prata', serif;
font-family: 'Space Mono', monospace;

  height: 90vmin;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -40%);
  width: 90vmin;
}
.animated-title > div {
  height: 50%;
  overflow: hidden;
  position: absolute;
  width: 100%;
}
.animated-title > div div {
  font-size: 8vmin;
  padding: 2vmin 0;
  position: absolute;
}
.animated-title > div div span {
  display: block;
}
.animated-title > div.text-top {
  border-bottom: 0.1vmin solid rgb(255, 255, 255);
  top: 0;
}
.animated-title > div.text-top div {
  animation: showTopText 2s;
  animation-delay: .5s;
  animation-fill-mode: forwards;
  bottom: 0;
  transform: translate(0, 100%);
}
.animated-title > div.text-top div span:first-child {
  color: #fffbfb;
}
.animated-title > div.text-bottom {
  bottom: 0;
}
.animated-title > div.text-bottom div {
  animation: showBottomText 3.2s;
  animation-delay: 2.75s;
  animation-fill-mode: forwards;
  top: 0;
  transform: translate(0, -100%);
  font-size: 5vmin;
}
 