h2 {
  width: 100vw;
  text-align: center;
  text-transform: uppercase;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 370px;
  margin: 100px 0px;
  background-image: url(../images/city1.jpg);
  background-size: cover;
  background-position: 0 40%;
  font-weight: bolder;
  color: transparent;
  background-clip: text;
  animation: anime 10s ease-in-out infinite alternate;
}
@keyframes anime {
  to {
    background-position-x: -100px;
  }
}
