body {
  margin: 0;
  padding: 0;
  background-color: white;
  position: relative;
}
.container {
  position: relative;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

header {
  font-family: Arial, sans-serif;
  background-color: black;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: 2.25rem;
  display: flex;
  align-items: center;
  cursor: default;
}

.marquee-wrapper {
  display: flex;
  justify-content: flex-start;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-wrapper p {
  font-size: 1.5rem;
  line-height: 0.1rem;
  color: white;
  padding: 0 1.5rem;
  animation: marquee 10s linear infinite;
}

.image-bg {
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .image-bg {
    padding-bottom: 5rem;
  }
}

@media (max-width: 768px) {
  .image-bg {
    margin-top: 4rem;
  }
}

@media (min-width: 769px) {
  .image-bg {
    margin-top: 2rem;
  }
}

.footer {
  width: 100%;
  bottom: 0;
  left: 0;
  color: white;
  text-align: center;
  font-family: Arial, sans-serif;
  font-size: 0.8rem;
  line-height: 1rem;
  mix-blend-mode: difference;
  display: flex;
  justify-content: start;
  z-index: 1000;
}

.footer a {
  color: white;
  text-decoration: none;
  cursor: pointer;
}

@media (min-width: 769px) {
  .footer {
    position: fixed;
    left: 0;
    bottom: 0;
  }

  .footer p {
    padding: 0 1rem;
  }

  .gtl {
    display: none;
  }
}

@media (max-width: 768px) {
  .footer {
    position: absolute;
  }

  .footer p {
    padding: 0 0.5rem;
  }
}

/* Marquee Animation */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
