html{
  font-size: 16px;  
}
body{
  font-size: clamp(14px, 1.2vw, 18px); 
  background-image: url("gfx/wallpaper/xp_mountain.jpg");

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

#ytbgmusic {
  position: relative;
}
.centered{
  justify-content: center;
  align-items: center;
  height: 100vh;
  position: relative;
  display: flex;
}
.xp_rover_dog {
  position: fixed;/*absolute;*/
  bottom: 0;
  right: 0;
  width: 170px; /* adjust size */
  z-index: 20;  /* on top */
  
  /* Move it slightly up and right to sit *over* the border */
  transform: translate(10%,0%);
  pointer-events: none;
}
.window-body {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
  padding: 12px;
  box-sizing: border-box;
  width: 100%;

}
.window {
  width: 86vw;
  height: 90vh;
  position: absolute;
      overflow: auto;

  /*
  
  
  
  width: min(90vw, 900px);     
  min-width: 320px;
  max-width: 1000px;       */
}

.gallery_figure {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.gallery_figure figcaption {
  font-size: clamp(14px, 1.2vw, 18px);
  margin-top: 4px;
  text-align: center;
  color: #333; /* optional: better contrast */
}

.gallery_image {
  width: 100%;
  height: auto;
  object-fit: contain;
  /*object-fit: cover;
  border: 1px solid #888;*/
}
img {
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: none; /* disables interaction, including drag */
}



