.marquee-container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
 background-color: #ae2c36;
 background-color: #ffcc00;
height: 36px;
}

.scrolling-text {
  display: inline-block;
  padding-left: 100%;
  animation: scroll-left 15s linear infinite;
font-family: 'Roboto', sans-serif;
color: #000000;
	font-size: 18px;
line-height: 36px;
}
.scrolling-text:hover {
	animation-play-state: paused;
}
.scrolling-text a {
color:#000000;
}
.scrolling-text a:hover {
	font-weight: 600;
}

@keyframes scroll-left {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-100%, 0); }
}
