/* Pop up images */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1;
    width: 100%;
    height: 100%;
    overflow: hidden;
    object-fit: contain;
    background-color: color-mix(in srgb, var(--primary-color), transparent 20%);
    color: var(--secondary-color);
}
.modal-image {
    margin: auto;
    display: block;
    max-width: 95%;
    max-height: 95%;
    object-fit: contain;
}
.close-button {
    position: absolute;
    top: 15px;
    right: 35px;
    margin: auto;
    padding: 12px 20px;
}
.close-button:hover {
    background-color: rgba(220, 220, 220, 0.445);
}