body {
    font-family: "Archivo Black", sans-serif;
    background:	#202020;
    display: flex;
    flex-direction: column;
    height: 100vh;
    justify-content: center;
    align-items: center;
    margin: 0%;
    padding: 0%;
  }
  
  .words {
    color: 	#202020;
    font-size: 0;
    line-height: 1.2;
    text-align: center;
  }
  
  .words span {
    font-size: 5rem;
    display: inline-block;
   /* animation: move 3s ease-in-out infinite;*/
    animation: colorchange 7s ease-in-out infinite alternate;
  }
  .words span:nth-child(n):hover{
    /* background-color: rgba(211, 211, 211,0.2) ; */
    background-color:rgba(248, 248, 248,0.2);
    cursor: pointer;
  }
  
  /* @keyframes move {
    0% {
      transform: translate(-30%, 0);
    }
    50% {
      text-shadow: 0 25px 50px rgba(248, 248, 248);
    }
    100% {
      transform: translate(30%, 0);
    }
  }
   */
  .words span:nth-child(2) {
    animation-delay: 1s;
   
  }
  
  .words span:nth-child(3) {
    animation-delay: 2s;
  }
  
  .words span:nth-child(4) {
    animation-delay: 3s;
  }
  
  .words span:nth-child(5) {
    animation-delay: 4s;
  }
  
  .words span:nth-child(6) {
    animation-delay: 5s;
  }
  
  .words span:nth-child(7) {
    animation-delay: 6s;
  }
  .words span:nth-child(8) {
    animation-delay: 7s;
  }
  
  @keyframes colorchange {
    0% {
      color:#202020;
      transform: translate(-30%, 0);
    }
    10% {
      color: 	#282828;
     
    }
    20% {
      color: #383838;
      text-shadow: 0 25px 50px rgba(248, 248, 248,0.2);
    }
    30% {
      color: 	#686868;
      text-shadow: 0 25px 50px rgba(248, 248, 248,0.2);
    }
    40% {
      color: #888888;
      text-shadow: 0 25px 50px rgba(248, 248, 248);
    }
    50% {
      color: #888888;
      text-shadow: 0 25px 50px 	rgba(248, 248, 248);
    }
    60% {
      color: #888888;
      text-shadow: 0 25px 50px rgba(248, 248, 248);
    }
    70% {
      color: #888888;
      text-shadow: 0 25px 50px rgba(248, 248, 248,0.2);
    }
    80% {
      color: #686868;
      text-shadow: 0 25px 50px rgba(248, 248, 248,0.2);
    }
    90% {
      color: #383838;

    }
    100% {
      color: #202020;
      transform: translate(30%, 0);
    }
  }