/*
 * Brand animation
 */

.words {
  color: #ffffff;
  text-align: center;
  margin-bottom: 34px;

}

@media only screen and (min-width: 768px) {
  /* For desktop screens */
  .words span {
    font-size: 100px; /* Change this to adjust the font size */
  }
}

@media only screen and (max-width: 767px) {
  /* For mobile screens */
  .words span {
    font-size: 13vw; /* Change this to adjust the font size */
  }
}

.words span {
  letter-spacing: 0px;
  font-weight: bold;
  display: inline-block;
  animation: move 8s 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: 4.5s;
}

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

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

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