body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#gallery {
  position: fixed; /* Changed from relative to fixed */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: #000; /* Optional: change to desired background color */
}
.image-fall {
  visibility: hidden; /* Initially hide the image */
  position: absolute;
  will-change: transform;
  max-width: 20%; /* Adjust based on the desired maximum size */
  max-height: 20%; /* Adjust based on the desired maximum size */
}
.back-to-section {
  position: fixed;
  top: 20px;
  left: 20px;
  background-color: #f1f1f1;
  color: #000;
  padding: 10px 20px;
  text-decoration: none;
  font-size: 16px;
  border-radius: 5px;
  z-index: 1000; /* Ensure it's above other content */
  transition: background-color 0.3s;
}

.back-to-section:hover {
  background-color: #ddd; /* Lighten the button on hover for better UX */
}
.spotify-player {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000; /* High z-index to ensure it's above other content */
}

.quote {
  color: white;
  font-size: 18px;
  font-family: Arial, sans-serif;
}

.jp {
  writing-mode: vertical-rl;
  text-orientation: upright;
}
