@import url(http://fonts.googleapis.com/css?family=Josefin+Sans:400,700);
@keyframes swipe {
  from {
    background-position: 200% 0;
  }
  to {
    background-position: -100% 0;
  }
}


h2 {
  text-align: center;
  position: absolute;
  width: 100%;
 top:-40px;
}

.loading {
  font-family:'Century Gothic';
  font-weight: 400;
  font-size: 35px;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
background-image: linear-gradient(to right, rgba(34, 34, 34, 0) 0%, #222 60%, rgba(34, 34, 34, 0));
    background-size: 300% 100%;
  animation: swipe 2.5s linear infinite;
  background-repeat: no-repeat;
  transition: background 1s ease;
  text-shadow: 0 -1px rgba(0, 0, 0, 0.02);
}
