#imageviewer {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 100;
  background-color: rgba(155, 155, 155, 0.5);
  width: 100%;
  height: max(100%, 100vh);
  padding: 10px;
  box-sizing: border-box;
  margin: 0px;
  display: none;
}

#gallery {
  display: flex;
  column-gap: 10px;
}

#galleryimage,
.galleryimagethumbnail {
  background-size: contain;
  background-position: center, center;
  background-color: #dddddd;
  border: solid 1px #cccccc;
  cursor: pointer;
  background-repeat: no-repeat;
}

.galleryimagethumbnail {
  width: 50px;
  height: 50px;
}

#galleryimage {
  width: min(75vw, 75vh);
  aspect-ratio: 1;
  z-index: 101;
  background-color: white;
}

#gallerybuttons {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 5px;
  box-sizing: border-box;
}

#galleryimagecontainer{
  display: flex;
  flex-direction: column;
  position:relative;
}

#galleryimagelegend{
  width: min(75vw, 75vh);
  align-content: center;
  background-color: white;
  /*width: 100%;*/
  padding: 5px;
  box-sizing: border-box;
}