@keyframes shootUp {
  from {
    transform: scale(1)
      /* transform: rotate(0deg) */
  }

  to {
    transform: scale(1.5)
      /* transform: rotate(360deg) */
  }
}

@keyframes moveJS {
  from {
    transform: translateX(0%)
  }

  to {
    transform: translateX(850%)
  }
}


@keyframes forAmazon {
  from {
    transform: translateX(0%)
  }

  to {
    transform: translateX(200%)
  }
}

.c3 {
  animation: forAmazon 5s infinite;
  transform: translateX(200%)
}


.a {
  opacity: 0.3;
  transition: all 0.6s;
  padding-right: 5px;
  cursor: auto;
}

.b {
  transition: all 0.6s;
}

.shootUpClass {
  transform: scale(1.3);
}

.a1 {
  animation: moveJS 5s infinite;
  transform: translateX(850%)
}

.c1 {
  animation: moveJS 5s infinite;
  transform: translateX(850%)
}

.hightlight {
  width: 40px;
  height: 40px;
  background-color: rgb(136, 128, 128);
  font-size: xx-large;
  position: absolute;
}

.newScreen {
  align-items: center;
  justify-content: center;
  margin: auto;
  text-align: center;
  margin-bottom: 100px;
}

@keyframes down {
  from {
    transform: translateY(0%);
  }

  to {
    transform: translateY(20%);
  }
}

.arrowDown {
  animation: down 1s infinite;
  margin: auto;
  text-align: center;
  text-align: center;
  padding-top: 30px;
  color: rgb(73, 203, 207);
  opacity: 0.3;
}