.news-ticker {
  width: 100%;
  height: 15%;
  background: #000;
  color: #1acf02;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  font-weight: bold;
  font-size: 55px;
  border-top: 3px solid #00ffcc;
  border-bottom: 3px solid #00ffcc;
}

.ticker-content {
  display: inline-block;
  padding-left: 100%;
  animation: scrollText 25s linear infinite;
}

@keyframes scrollText {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}