@CHARSET "ISO-8859-1";

.marquee {
  background-color: black;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  white-space: nowrap;
  color: whitespace;
  padding: 4px; 0px;
}
.marquee span {
  display: inline-block;
  position: relative;
  left: 100%;
  animation: marquee 40s linear infinite;
  animation-fill-mode: both;
  width: 350px;
}
.marquee:hover span {
  animation-play-state: paused;
}

@keyframes marquee {
  0%   { left: 0 }
  100% { left: -7000px }
}
