.scrolling-container {
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
}

.now-playing {
  font-size: 1.2em;
  font-weight: bold;
  text-transform: uppercase;
  white-space: nowrap;
}

body {
  margin: 0;
  font-family: sans-serif;
  overflow-x: hidden;
}

.marquee {
  height: 25px;
  width: 100%;
  border: none;
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
  margin: 0px auto;
}

.marquee--inner {
  display: block;
  white-space: nowrap;
  position: absolute;
  animation: marquee 25s linear infinite;
  animation-delay: 0s;
}

.marquee--inner span {
  display: inline-block;
  padding-right: 10%;
  padding-left: 10%;
  font-family:monospace;
  font-size:1.1em;
  font-weight: 600;

}

@keyframes marquee {
  0% { left: 0; }
  100% { left: -200%; }
}
