body {
  background-color: #F9F7FA; 
  color: black; 
  font-family: monospace;
font-size: 10px;
  margin: 0;
  padding: 20px;
}


.gallery-item {
  display: flex;
  flex-direction: column-reverse; 
  align-items: center;
  text-align: center;
  gap: 10px;
}


.gallery-item img {
  width: 200px;
  height: auto;
  border: 0.5px solid #444;
}

.scene-container {
  position: relative;
  width: 600px; 
  height: 400px;
  margin: 50px auto;
  overflow: hidden;
  border: 0.5px solid #555;
}

.background-layer, .hand-passive, .hand-active {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.hand-active {
  opacity: 0;
  transition: opacity 0.2s;
}

.hand-trigger:hover .hand-active {
  opacity: 1;
}

.hand-trigger:hover .hand-passive {
  opacity: 0;
}

.gallery {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.explorations {
  background-color: #FCFFC6; 
  width: 100vw; 
  font-size: 10px;

  position: relative;
  left: 50%;
  right: 50%;
  text-align: center;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 10px 0; 
}