body {
    background-color: black;
    height: 100%;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

#backButton {
    height: 11vh; 
    position: fixed; 
    z-index: 15; 
    right: 2vh;
    transition-duration: .5s; 
}
#backButton:hover {
    transition-duration: .5s;
    scale: 1.1;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Dazzle';
    color: #ff88b9;
    -webkit-text-stroke: none; 
    -webkit-text-stroke: 4px #000000; 
    paint-order: stroke fill;
    text-shadow: 5px 5px 0px #000000;
    text-decoration: none;
}

::-webkit-scrollbar {
    width: 0px;
}
::-webkit-scrollbar:vertical {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track:vertical {
    background: black;
    opacity: 0;
}

/* Handle */
::-webkit-scrollbar-thumb:vertical {
    background: #ff88b9;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover:vertical {
    background: #ff88b9;
}

/* Basic Layout */
#container {
    display: flex;
    flex-direction: row;
    gap: 0;
}

#main {
    width: calc(100% - 220px);
    height: 100vh;
    display: flex;
    flex-direction: column;
    background-image: url(imgs/bg.png);
    background-size: cover;
    justify-content: center;
    align-items: center;
}

#mainbox {
    width: 810px;
    height: 450px;
    background-color: black;
    margin-top: -250px;
    border: 1px solid white;
    padding: 0;
}

header h1{
    font-family: 'Dazzle';
    font-size: 55px;
    margin-top: -35px;
    margin-left: 20px;
}

#mainContent {
    display: flex;
    flex-direction: row;
}
#miniContent {
    padding: 30px;
    color: white;
    overflow-y: scroll;
    height: 320px;
    margin-top: -20px;
}

#araki {
    height: 380px;
    margin-left: -60px;
    margin-bottom: 2px;
    padding: 0;
    border-bottom: 1px solid white;
}

#stickers {
    display: flex;
    flex-direction: row;
    align-items: end;
    width: 100%;
    /* height: 400px; */
    position: absolute;
    bottom: 0;
    left: 160px;
}

#tv {
    height: 300px;
    z-index: 2;
}
#clip {
    position: absolute;
    height: 200px;
    bottom: 60px;
    right: 575px;
    z-index: 1;
}

#alien {
    position: absolute;
    right: 160px;
    bottom: 0;
    height: 480px;
}

#trio {
    height: 460px;
}



/* The viewing window constraint */
.slideWindow {
  width: 210px;
  height: 100%;
  overflow: hidden;
  background-color: #ff88b9;
  position: relative;
}

/* The moving column of images */
.slide-container {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px 0;
  /* Bind the infinite scrolling animation */
  animation: scrollVertical 13s linear infinite;
}

/* Force consistent layout sizes */
.slide-container img {
  width: 200px;
  height: auto;
  object-fit: cover;
  margin: 0 auto;
}

/* Optional: Pause the scroll when a user hovers */
.slideWindow:hover .slide-container {
  animation-play-state: paused;
}

/* Keyframe logic to shift the track upward */
@keyframes scrollVertical {
  0% {
    transform: translateY(0);
  }
  100% {
    /* Moves exactly half of the combined track height (original items) */
    transform: translateY(-50%);
  }
}


/* TV */
#tvSticker {
    width: 200px;
    height: auto;
}
