/* Styling for the modal */

#modal {
    display: none;
    /* Hide the modal by default */
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}


/* Styling for the modal image */

#modal-image {
    display: block;
    margin: auto;
    max-width: 90%;
    max-height: 90%;
}


/* Styling for the modal close button */

#close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    font-weight: bold;
    color: white;
    cursor: pointer;
}