.modalDialog {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 5px;
    left: 0;
    z-index: 99999;
    opacity: 0;
    -webkit-transition: opacity 400ms ease-in;
    -moz-transition: opacity 400ms ease-in;
    transition: opacity 400ms ease-in;
    pointer-events: none;
    background-color: black;
    background-color:rgba(0,0,0,.75);
  }
  .modalDialog:target {
    opacity: 1;
    pointer-events: auto;
  }
  .modalDialog > div {
    width: 500px;
    position: relative;
    left: 32%;
    top: 32px;
    bottom: 6px;
    border-radius: 3px;
    background: #fff;
  }
  .close {
    background: #dbdbdf;
    color: #FFFFFF;
    line-height: 25px;
    right: -12px;
    text-align: center;
    padding-bottom: 5px;
    top: -10px;
    width: 24px;
    text-decoration: none;
    font-weight: bold;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    -moz-box-shadow: 1px 1px 3px #000;
    -webkit-box-shadow: 1px 1px 3px #000;
    box-shadow: 1px 1px 3px #000;
  }


  #modalImage{
    position: relative;
    left: 30%;
    top: 40px;
    height: 500px;
    object-fit: contain;
  }