.gallery-popup {
    display: none;
    position: fixed;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1000;
    animation: popupShow 0.3s ease-in-out;
}

.gallery-popup img {
    max-width: 85%;
    max-height: 80%;
    border-radius: 5px;
}

.gallery-close-btn,
.gallery-download-btn {
    position: absolute;
    cursor: pointer;
}

.gallery-close-btn {
    top: 10px;
    right: 20px;
    color: white;
    font-size: 28px;
}

.gallery-download-btn {
    top: 20px;
    left: 20px;
    color: black;
    background-color: var(--yellow);
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 22px;
}

.gallery-download-btn:hover {
    color: black;
}

.gallery-img-name {
    position: absolute;
    bottom: 10px;
    font-size: 30px;
    font-weight: bold;
}

@keyframes popupShow {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}