.marquee {
  position: relative;
  white-space: nowrap;
  overflow: hidden;
}

.marquee span {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 15s linear infinite;
  font-size: 120px; /* размер текста */
  font-weight: bold;
  mix-blend-mode: difference; /* вот это даёт эффект инверсии */
  color: white; /* базовый цвет, будет инвертироваться */
}

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