.popup .close {
    color: #fff;
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    cursor: pointer;
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.586);
    z-index: 1000;
    /* Pop-up'ı diğer öğelerin üzerine açmak için yüksek bir z-index değeri atandı. */
    display: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.popup img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    height: auto;
}

@media screen and (max-width: 768px) {
    .popup img {
        width: 90%;
    }
}

@media screen and (max-width: 992px) {
    .popup img {
        width: 90%;
    }
}

@media screen and (max-width: 1200px) {
    .popup img {
        width: 90%;
    }
}

@media screen and (max-width: 1400px) {
    .popup img {
        width: 90%;
    }
}