body {
  background-image: url("pattern.gif");
  color: white;
  overflow: hidden;
  display: flex;
  justify-content: center;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  image-rendering: optimizeSpeed;
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: pixelated;
  image-rendering: optimize-contrast;
  -ms-interpolation-mode: nearest-neighbor;
}

a {
  cursor: url("hand.gif"), auto;  
}

.container {
  margin-top: 50px;
  display: flex;
  justify-content: center; /* centers the middle content */
  align-items: flex-start; /* aligns GIFs and content at top */
  gap: 20px; /* space between GIFs and center */
}

.centered {
  text-align: left;
  max-width: 800px;
}

.side-gif {
  width: 200px;
  height: 600px;
}



/* TOP OF THE WEBSITE SCROLLING TAPE THING */

#tape {
  position: fixed;
  top: 0%;
  width: 100%;
  height: 1.5rem;
  overflow: hidden;
  white-space: nowrap;
  background: darkred;
  color: white;
}

#tape .scroll {
  display: flex;
  /*align-items: center;*/
  justify-content: space-around;
  width: fit-content;
  top: 0%;
  white-space: nowrap;
  animation: loop 30s linear infinite;
  position: fixed;
}

#tape .scroll#scroll-a {
  transform: translateX(100%);
  animation-delay: 15s;
}

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

.item {
    display: flex;
    align-items: center;
    gap: 0 0.2rem;
    padding: 0rem 0rem;
    margin: 0rem 1rem;
    white-space: nowrap;
}



/* RAINBOW TEXT */

.rainbow {
    background: linear-gradient(to right, #ff4444, #ffbb44 , #ffff44, #bbff44, #44ff44, #44ffbb, #44ffff, #44bbff, #ff44ff, #ff44bb, #ff4444, #ffbb44 , #ffff44, #bbff44, #44ff44, #44ffbb, #44ffff, #44bbff, #ff44ff, #ff44bb, #ff4444, #ffbb44 , #ffff44, #bbff44, #44ff44, #44ffbb, #44ffff, #44bbff, #ff44ff, #ff44bb, #ff4444, #ffbb44 , #ffff44, #bbff44, #44ff44, #44ffbb, #44ffff, #44bbff, #ff44ff, #ff44bb, #ff4444, #ffbb44 , #ffff44, #bbff44, #44ff44, #44ffbb, #44ffff, #44bbff, #ff44ff, #ff44bb, #ff4444, #ffbb44 , #ffff44, #bbff44, #44ff44, #44ffbb, #44ffff, #44bbff, #ff44ff, #ff44bb, #ff4444, #ffbb44 , #ffff44, #bbff44, #44ff44, #44ffbb, #44ffff, #44bbff, #ff44ff, #ff44bb, #ff4444, #ffbb44 , #ffff44, #bbff44, #44ff44, #44ffbb, #44ffff, #44bbff, #ff44ff, #ff44bb);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: rainbow_animation 60s linear infinite;
    background-size: 8000% 100%;
}

@keyframes rainbow_animation {
    0%, 100% {
        background-position: 0 0;
    }

    50% {
        background-position: 100% 0;
    }
}