/* The markdown image container */
.md__image {
    cursor: pointer;
  }
  
  /* The Modal (background) */
  .modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 4em;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    /* background-color: black; */
  }
  
  /* Modal Content */
  .modal-content {
    position: relative;
    background-color: #ffffff7f;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 1400px;
  }
  
  .modal-pic {
    display: flex;
    align-content: center;
    cursor: pointer;
  }
  
  /* The Close Button */
  /* Optimized for accessibility by using a button named close but 
    shifting the close text out of the button and only showing x */
  .modal-close {
    color: white;
    background-color: black;
    opacity: 0.5;
    position: absolute;
    top: .5em;
    right: .5em;
    font-size: 2em;
    font-weight: bold;
    height: 1em;
    width: 1em;
    text-indent: 10em;
    overflow: hidden;
    border: 0;
  }
  
  .modal-close::after {
    position: absolute;
    line-height: 0.5;
    top: 0.13em;
    left: 0.15em;
    text-indent: 0;
    content: "\00D7"
  }
  
  .modal-close:hover,
  .modal-close:focus {
    color: #999;
    text-decoration: none;
    cursor: pointer;
  }