
  /* Style the Image Used to Trigger the Modal */
  img {
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.closeImg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 99;
}

/* The Modal (background) */
#image-viewer {
    display: none;
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(255, 255, 255);
}
.modal-content {
    margin: auto;
    padding-top: 20%;
    padding: 10%;
    display: block;
    margin-top: 35px;
    cursor: default;
    pointer-events: none;
    border: none;
    width: 70%;
}
.modal-content { 
    animation-name: zoom;
    animation-duration: 0.6s;
}
@keyframes zoom {
    from {transform:scale(0)} 
    to {transform:scale(1)}
}

#image-viewer .close:hover,
#image-viewer .close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

    .modal-content {
        width: 70%;
    }

.smallImage {
    width: 70%;
    margin-bottom: 5%;
    }

  
    #image-viewer .zoombutton:hover,
    #image-viewer .zoombutton:focus {
        color: #bbb;
        text-decoration: none;
        cursor: pointer;
    }



  #image-viewer .close {
      z-index: 9999;
    position: fixed;
    top: 0;
    right: 0;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}


.modalNav {
    z-index: 999;
    position: fixed;
    top: 0;
    left: 0;
    height: 65px;
    width: 100%;
    background-color: rgba(0,0,0,1);
}