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

.marquee:hover .marquee__item {
  animation-play-state: paused;
}

.marquee__seperator {
  margin: 0 2rem;
}
.marquee__list {
  display: inline-block;
  animation: marquee 30s linear infinite;
padding-left: 100%;
}
.marquee__item {
  display: inline-block;
	font-size: large;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Styling */
.marquee {
  background-color: #000000;
  padding: .5rem 0;
  color: #ffffff;
  box-shadow: 10px 10px 30px rgba(174, 174, 192, 0.2);
}
/* Responsive Styling */
@media (max-width: 768px) {
  .marquee {
    padding: 0.5rem 0;
    font-size: 0.9rem;
	  margin-top: 78px;
  }

  .marquee__seperator {
    margin: 0 1rem;
  }
}

@media (max-width: 480px) {
  .marquee {
    padding: 0.25rem 0;
    font-size: 0.8rem;
	  margin-top: 78px;
  }

  .marquee__seperator {
    margin: 0 0.5rem;
  }
}