@import url('https://fonts.googleapis.com/css?family=Orbitron:900&display=swap');

* {
  margin: 0;
  padding: 0;
}
body {
	background-image: linear-gradient( 140deg, rgb(6,55,78) 0%, #02131c 80% );
	/*background: linear-gradient(45deg, rgba(45,45,45,1) 9%,rgba(0,0,0,1) 100%); */
	width: 100%;
  height: 200vh;
  font-family: 'Orbitron', sans-serif;
}
.text {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  list-style: none;
  border-bottom: 0;
}

.text li {
  display: inline-block;
  float: left;
  font-weight: 700;
  font-size: 5em;
  color: #fff;
  opacity: 1;
  transition: all 1.3s ease-in-out;
  max-width: 2em;
}

.text.hidden li.ghost {
  opacity: 0;
  max-width: 0;
}