.popupdom{
    position: fixed;
    height: 100vh;
    width: 100vw;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 99999;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center
}
.popup-img-container{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.popup-img{
    max-width: 800px;
    max-height: 75%;
    border-radius: 16px;
}
.close-popup-id{
    position: absolute;
    top: 10px;
    right: 10px;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    font-weight: bold;
}
.close-popup-id:hover{
    color: #2f2f2f;
}

.popupdom-body{
    position: relative;
}