body {
  font-family: monospace;
  background-color: black;
  max-width: 100%;
  display: flex;
  justify-content: center; /* Center the content horizontally */
  align-items: center; /* Center the content vertically */
  height: 100vh; /* Ensure the body takes up the full viewport height */
}

header {
  text-align: center;
  color:white;
}
    
    h1{
      font-size:30px;
    }

    h3{
      font-size:18px;
      color:white;
    }
    
    h4{
      font-size:15px;

    }
    
    p{
      font-size:12px;
      line-height: normal;
      color:black;
    }

    a {
    color: blue; /* Link color for unvisited links */
    }

    a:visited {
    color: purple; /* Link color for visited links */
    }

/* scrollbar */
/* width */
::-webkit-scrollbar {
  width: 5px;
  height: 5px; /* this is the horizontal scrollbar */
  background: transparent;
}

/* Track */
::-webkit-scrollbar-track {
  border-radius: 10px;
  background: transparent;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: black; 
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: red; 
}

/* popup styling */
.popup {
  display: none;
  position: absolute;
  border-radius: 10px;
  top: 20%;
  left: 30%;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 90%;
  background-color: #fcf5ca;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  cursor: move;
  z-index: 9999;
}

.popup.open {
  display: block;
  z-index: 9999;
}

.popup-content {
  padding: 20px;
  text-align: center;
}

.popup-content p {
  text-align: left;
}
.popup-close {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 20px;
  height: 20px;
  background-color: #fcf5ca;
  border: none;
  cursor: pointer;
  float: right;
}

/* individual styling */


.image1 {
  /* star */
  position: absolute;
  cursor: pointer;
  top: 10%;
  left: 14%;
}


.image3 {
  /* fish */
  position: absolute;
  cursor: pointer;
  top: 70%;
  left: 20%;
  width: 350px;
  height: auto;
}

#popup3 {
  /* fish */
  width: 300px;
  height: auto;
  top: 70%;
  left: 30%;
}

.image4 {
  /* vinyl */
  position: absolute;
  cursor: pointer;
  top: 60%;
  left: 55%;
}

.image-wrapper5 {
  /* bush */
  position: absolute;
  top: 70%;
  left: 75%;
  width: 30px; /* Adjust the width to make the target smaller */
  height: 60px; /* Adjust the height to make the target smaller */
}

.image-wrapper6 {
  /* ntbk */
  position: absolute;
  top: 3%;
  left: 39%;
  width: auto; /* Adjust the width to make the target smaller */
  height: auto; /* Adjust the height to make the target smaller */
}

.girl-wrapper {
  /* girl */
  position: absolute;
  top: 47%;
  left: 80%;
  width: auto; /* Adjust the width to make the target smaller */
  height: auto; /* Adjust the height to make the target smaller */
}

.image-wrapper7 {
  /* film */
  position: absolute;
  top: 45%;
  left: 2%;
  width: auto; /* Adjust the width to make the target smaller */
  height: 100px; /* Adjust the height to make the target smaller */
}

.image8 {
  /* gizmo */
  position: absolute;
  cursor: pointer;
  top: 55%;
  left: 30%;
  width: 100px;
  height: auto;
}

#popup8 {
  /* todo hammer */
  width: 300px;
  height: auto;
  top: 52%;
  left: 24%;
}


.image10 {
  /* ants */
  position: absolute;
  cursor: pointer;
  top: 23%;
  left: 70%;
  width: 200px;
  height: auto;
}

#popup10 {
  /* ants */
  width: 250px;
  height: auto;
  top: 28%;
  left: 67%;
}

imagescol:hover {
  -webkit-animation-name: wiggle;
  -ms-animation-name: wiggle;
  -ms-animation-duration: 1000ms;
  -webkit-animation-duration: 1000ms;
  -webkit-animation-iteration-count: 1;
  -ms-animation-iteration-count: 1;
  -webkit-animation-timing-function: ease-in-out;
  -ms-animation-timing-function: ease-in-out;
}

@-webkit-keyframes wiggle {
  0% {-webkit-transform: rotate(10deg);}
  25% {-webkit-transform: rotate(-10deg);}
  50% {-webkit-transform: rotate(20deg);}
  75% {-webkit-transform: rotate(-5deg);}
  100% {-webkit-transform: rotate(0deg);}
}

@-ms-keyframes wiggle {
  0% {-ms-transform: rotate(1deg);}
  25% {-ms-transform: rotate(-1deg);}
  50% {-ms-transform: rotate(1.5deg);}
  75% {-ms-transform: rotate(-5deg);}
  100% {-ms-transform: rotate(0deg);}
}

@keyframes wiggle {
  0% {transform: rotate(10deg);}
  25% {transform: rotate(-10deg);}
  50% {transform: rotate(20deg);}
  75% {transform: rotate(-5deg);}
  100% {transform: rotate(0deg);}
}

 
#no {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #094022; 
  color: white; 
  font-size: 36px; /* Adjust font size as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999; /* Ensure it's on top of other elements */
}