.loading-screen {
  min-height: 100vh;
  position: absolute;
  z-index: 5;
  width: 100%;
  height: 100vh;
  background-color: white;
  display: flex;
  font-size: 46px;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #ff9500;

	display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.words {
  color: #ff9500;
  font-size: 0;
  line-height: 1.5;
	letter-spacing: 4px;
}

.words span {
  font-size: 3rem;
	font-family: 'Anta';
  display: inline-block;
  animation: move 3s ease-in-out infinite;
}


@keyframes move {
  0% {
    transform: translate(-30%, 0);
  }
  50% {
    text-shadow: 0 25px 50px rgba(0, 0, 0, 0.75);
  }
  100% {
    transform: translate(30%, 0);
  }
}

.words span:nth-child(2) {
  animation-delay: 0.5s;
}

.words span:nth-child(3) {
  animation-delay: 1s;
}

.words span:nth-child(4) {
  animation-delay: 1.5s;
}

.words span:nth-child(5) {
  animation-delay: 2s;
}

.words span:nth-child(6) {
  animation-delay: 2.5s;
}

.words span:nth-child(7) {
  animation-delay: 3s;
}
.words span:nth-child(8) {
  animation-delay: 3.5s;
}
.words span:nth-child(9) {
  animation-delay: 4s;
}

.words span:nth-child(10) {
  animation-delay: 5s;
}
.words span:nth-child(11) {
  animation-delay: 5.5s;
}
