html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    

    position: relative;
    overflow: hidden; /* Disable scrolling on the page */
}

/* Keep scroll functionality, but hide the scrollbar */
html {
    scroll-behavior: smooth;
    overflow: auto; /* Allow scrolling */
}

img {
  -user-drag: none; /* Safari */
  -webkit-user-drag: none; /* Chrome, Safari */
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: auto; /* Keep clickable */
}

body {
    margin: 0;
    padding: 0;
    overflow: auto; /* Enable scrolling */
    background-color: #131211; /* Light background for contrast */
    
}

/* Hide the scrollbars but keep scrolling functionality for the body */
body::-webkit-scrollbar {
    display: none; /* For Chrome, Safari, and Edge */
}

body {
    -ms-overflow-style: none;  /* For Internet Explorer */
    scrollbar-width: none; /* For Firefox */
}

/* If you want to hide scrollbars for a specific element, use this: */
.element {
    overflow: hidden; /* Hides both horizontal and vertical scrollbars */
}

/* If you want to hide scrollbars but keep the scrolling functionality for a specific element, use: */
.element {
    overflow: scroll;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none;  /* For Internet Explorer */
}

.element::-webkit-scrollbar {
    display: none; /* For Chrome, Safari, and Edge */
}

/* Style for PNG images */
.png-image  {
    position: absolute;
    height: auto; /* Maintain aspect ratio */
    width: auto; /* Maintain aspect ratio */
    opacity: 0; /* Initially hidden */
    transform: translateY(20px); /* Slightly offset below position */
    transition: opacity 1s ease, transform 1s ease; /* Smooth fade-in/out and movement */
    
}

/* Visible state: Fade-in effect */
.png-image.visible {
    opacity: 1; /* Fully visible */
    transform: translateY(0); /* Reset position */
}

/* Specific positions for each image */
/* Specific positions for each image */

/* Container to hold all images */
.image-container {
    display: flex;
    justify-content: center;
    align-items: flex-start; /* or center if you want vertical alignment too */
    gap: 2vw; /* space between images */
    margin-top: 5vw;
    position: relative;
}

#image-1 {
    top: 4vw;
    width: 17vw;
    left: 59vw;
}

#image0 {
    top: 3vw;
    width: 12vw;
    left: 27vw;
}

#image1 {
    top: 0vw;
    width: 15vw;
    left: 42vw;
}

#image2 {
    top: 15vw;
    width: 5vw;
    left: 58vw;
}

#image3 {
    top: 14.5vw;
    width: 9vw;
    left: 36.5vw;
}

#image4 {
    top: 14.5vw;
    width: 9vw;
    left: 47vw;
}

#image5 {
    top: 14.5vw;
    width: 9vw;
    left: 57.5vw;
}


.content-display {
    margin-top: 22vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2vw;
  }
  
  .content-image {
    width: 70vw;
    max-width: 800px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
  }
  
  .content-image.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  
.toggle-image {
  cursor: pointer;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translatey(-1.5px); }
  40%, 80% { transform: translateX(1.5px); }
}

.content-image.toggle-image:hover {
  transform: scale(1.02);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
#scroll-to-top:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* Apply hover effect to all PNG image buttons */
#image2:hover,
#image3:hover,
#image4:hover,
#image5:hover {
  opacity: 1;
  transform: scale(1.1);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Smooth transition for all buttons */
#image2,
#image3,
#image4,
#image5 {
  transition: opacity 1s ease, transform 1s ease;
  transition-delay: 100ms;
  cursor: pointer;
}





@media only screen and (max-width: 768px) {


#image0 {
    top: 3vw;
    width: 22vw;
    left: 10vw;
}

#image1 {
    top: 0vw;
    width: 25vw;
    left: 37vw;
}

#image-1 {
    top: 5.5vw;
    width: 30vw;
    left: 65vw;
}

#image2 {
    top: 27vw;
    width: 11vw;
    left: 68vw;
}

#image3 {
    top: 26.5vw;
    width: 19vw;
    left: 19.5vw;
}

#image4 {
    top: 26.5vw;
    width: 19vw;
    left: 43vw;
}



.content-display {
    margin-top: 45vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5vw;
  }
  

  .content-image {
    width: 80vw;
    max-width: 800px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
  }


}