body{
  font-family: monospace;
  background-color: black;
  color: white;
}

.marquee {
  position: relative;
  width: 100vw;
  max-width: 100%;
  height: 200px;
}

.track {
  position: absolute;
  white-space: nowrap;
  will-change: transform;
  animation: marquee 32s linear infinite;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

  .content {
    text-align: center; /* Center-align the content */
  }

  .content img {
    display: block;
    margin: 0 auto; /* Center the image horizontally */
  }
