
#body {
  display: block;
}



#gallery {
  width: 100%;
  margin-top: 65px;
  min-height: calc(100% - 126px);
}

#gallery_container {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  padding: 9px;
  justify-content: space-between;
}

#gallery_container img {
  margin: 6px;
  height: 200px;
}

#bookimage, #main_container_gallery1 img, #main_container_gallery2 img, #gallery_container img {
  cursor: pointer;
  transition: transform 0.2s;
}

#bookimage:hover, #main_container_gallery1 img:hover, #main_container_gallery2 img:hover, #gallery_container img:hover {
  transform: scale(1.02);
}



#popout_background {
  background: #000000dd;
  position: fixed;
  left:0; right:0;
  top:0; bottom:0;
  text-align: center;
  padding-top: 120px;
  z-index: 999999999;
}

#popout_name {
  position: fixed;
  top: 20px;
  left: 20px;
  color: #e0e0e0;
  font-size: 20px;
}

#popout_close {
  cursor: pointer;
  position: fixed;
  top: 16px;
  right: 16px;
  width: 24px;
  filter: invert(.8);
  transition: filter 0.1s;
}

#popout_close:hover {
  filter: invert(.7);
}

#popout_container {
  /*background: #dedede;*/
  display: inline;
}

#popout_image {
  max-width: 80%;
  max-height: 90%;
}

@media screen and (max-width: 735px) { 
  #bookimage, #main_container_gallery1 img, #main_container_gallery2 img, #gallery_container img {
    max-width: 100%;
    height: auto;
  }

  #gallery_container {
    text-align: center;
  }
}