.main-body {
    text-align: center;
}




.baner_freely {
  display: none;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.words {
  display: inline-block;
  will-change: transform;
  animation: scroll 30s linear infinite;
}

.words span {
  padding-right: 50px;
  font-size: 24px;
}

@keyframes scroll {
  from {
    transform: translateX(100vw);
  }
  to {
    transform: translateX(-100%);
  }
}


/* Пауза на hover (опционально) */
.baner_freely:hover .words {
  animation-play-state: paused;
}

