.news-box {
  width: 100%;
  overflow: hidden;
  background: #111;
  color: #fff;
  padding: 10px 0;
  font-family: sans-serif;
  border-top: 0px solid #444;
  border-bottom: 0px solid #444;
  position: relative;
  white-space: nowrap;
}

.marquee {
  display: inline-block;
  padding-left: 100%;
  animation: scroll 30s linear infinite;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

/* Hover pause */
.news-box:hover .marquee {
  animation-play-state: paused;
}
