/* Modal background */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 0px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
  }
  
  /* Close button */
  .close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
  }
  
  /* Expanded image styling */
  .modal-content {
    display: block;
    margin: auto;
    width: 80%;
    max-width: 700px;
  }
  