header { background-repeat: repeat; }
.rainbow-text-loop {
  font-size: 1.5rem;
  display: inline-block;
  margin-top: 1rem;
  text-shadow: 2px 2px 4px #000000;
  -webkit-animation: rainbow 5s infinite; 
}

@-webkit-keyframes rainbow{
  0%{color: orange;}  
  10%{color: purple;} 
  20%{color: red;}
  30%{color: CadetBlue;}
  40%{color: yellow;}
  50%{color: coral;}
  60%{color: green;}
  70%{color: cyan;}
  80%{color: DeepPink;}
  90%{color: DodgerBlue;}
  100%{color: orange;}
}

.Lefty {
  text-align: left;
  border-style: double;
  font-family: verdana;

}

body {
  text-align: center;
  background-image: url("https://blob.gifcities.org/gifcities/ENN7EVN2FQBVV476MPJDNFPABLLQNNQL.gif");
  color: white;
  font-family: "Comic Sans MS", "Comic Sans", cursive;

}