body {
  background: white;
}
.shimmer {
  font-family: "Lato";
  font-weight: 300;
  font-size: 10em;
  margin: 0 auto;
  padding: 0 140px 0 250px;
  display: inline;
  margin-bottom: 0;
}

.shimmer {
  text-align: center;
  color: rgba(255,255,255,0.1);
  background: -webkit-gradient(linear, left top, right top, from(#222), to(#222), color-stop(0.5, #fff));
  background: -moz-gradient(linear, left top, right top, from(#222), to(#222), color-stop(0.5, #fff));
  background: gradient(linear, left top, right top, from(#222), to(#222), color-stop(0.5, #fff));
  -webkit-background-size: 125px 100%;
  -moz-background-size: 125px 100%;
  background-size: 125px 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  -webkit-animation-name: shimmer;
  -moz-animation-name: shimmer;
  animation-name: shimmer;
  -webkit-animation-duration: 2s;
  -moz-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-color: #222;
}
@-moz-keyframes shimmer {
  0% {
    background-position: top left;
  }
  100% {
    background-position: top right;
  }
}
@-webkit-keyframes shimmer {
  0% {
    background-position: top left;
  }
  100% {
    background-position: top right;
  }
}
@-o-keyframes shimmer {
  0% {
    background-position: top left;
  }
  100% {
    background-position: top right;
  }
}
@keyframes shimmer {
  0% {
    background-position: top left;
  }
  100% {
    background-position: top right;
  }
}
.topnav {
  padding: 20px 0px;
  text-align: center;
}

/* Targets just <a> tags inside of the <nav class="topnav"> */
.topnav a {
  text-decoration: none;
  color: white;
  padding: 15px 5%;
  font-weight: 600;
  background-color: #89c3cc;
  text-align: center
}

/* Targets just <a> tags inside of the <nav class="topnav">,
   when mouse is hovering over it: 
*/
.topnav a:hover {
  text-decoration: none;
  color: #dcdddf;
  background-color: white;
}
body {background-image: url("sparkle.jpg")}
.rotateimg180{
  -webkit-
  transform:rotate(180deg);
  -moz-transform:
  rotate(180deg);
  -ms-transform:rotate(180deg);
  -o-transform:rotate(180deg);
  transform:rotate(180deg);
}
