    .popup-overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.781);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.popup-content{
    position: relative;
    max-width: 1200px;
    width: 90%;
}

.popup-content img{
    width: 100%;
    border-radius: 12px;
    display: block;
}

.close-popup{
    position:absolute;
    top: -15px;
    right: -15px;
    background: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    cursor: pointer;
    font-size: 40px;
    font-weight: bold;
}

.close-popup{
    transition: all 0.4s ease;
}

.close-popup:hover{
    transform: rotate(180deg) scale(0.5);
}
