.marquee {
  height:50px;
  width: auto;
  overflow: hidden;
  position: relative;
}

.marquee div {
  display: block;
  width: 250%;
  height: 50px;
  position: absolute;
  overflow: hidden;

  animation: marquee 20s linear infinite;
}

.marquee span {
  float: left;
  width: 50%;
}

@keyframes marquee {
  0% { left: 0; }
  100% { left: -100%; }
}
