/* add maequee */ 
.marquee {
  padding: .5em 0;
  margin:0 auto;
  overflow: hidden;
  color: black;
}
.marqueeText {
  display: inline-block;
  padding-left: 100%;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
  font-size: 125%;
  font-weight: 800;
}

@keyframes marquee {
  from { transform: translate(0); }
  to { transform: translate(-100%); }
}
