body, html {
  margin: 0;
  padding: 0;
  background-color: #111111;
  color: white;
  font-family: Arial, sans-serif;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

/* Image responsive */
.center-image {
  width: 80%;
  max-width: 500px;
  height: auto;
  z-index: 1;
  margin: 20px 0;
}

/* Marquee */
.marquee {
  position: absolute;
  bottom: 80px;
  width: 100%;
  overflow: hidden;
  color: white;
  font-size: 1rem;
  white-space: nowrap;
}

.marquee__inner {
  display: flex;
  width: max-content;
  animation: marqueeLoop 15s linear infinite;
}

.marquee__inner span {
  padding-right: 0.5rem;
}

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

/* Circular text */
.circular-text {
  position: absolute;
  top: 10%;
  right: 10%;
  width: 150px;
  height: 150px;
  animation: spin 10s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

#circleText {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0; left: 0;
  transform: rotate(0deg);
  font-weight: bold;
  font-size: 12px;
  color: hotpink;
}

/* Individual letters styled with JS */
#circleText span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform-origin: 0 0;
}

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

