div.screenshot img {
  width: 100%;
  height: auto;
  cursor: pointer;
}

.modalWrapper {
  position: relative;
  max-width: max-content;
  margin: 0 auto;
}

.imgModal {
  display: none;
  position: fixed;
  z-index: 9999999;
  padding: 35px 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.9);
}

.imgModal-content {
  margin: auto;
  display: block;
  max-height: 92vh;
}

.imgModal-content {  
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.6s;
  animation-name: zoom;
  animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
  from {transform:scale(0)} 
  to {transform:scale(1)}
}

@keyframes zoom {
  from {transform:scale(0.1)} 
  to {transform:scale(1)}
}

.close {
  position: absolute;
  top: -52px;
  right: -5px;
  color: #f1f1f1;
  font-size: 58px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}