body {
  background-color: #100c0d;
  color: #fef5ee;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  border: 0px solid rgba(242, 239, 240, 0.1);
  padding: 0px;
}

.text {
  display: inline-block;
  font-size: 4rem;
  padding-left: 100%;
  animation: scrollText 55s linear infinite;
}

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