
#namaste-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}
.popup-content {
    position: relative;
    max-width: 430px;
    background: #fff;
    text-align: center;
    margin: auto;
    margin-top: 50px;
}
.popup-content img {
    max-width: 100%;
    height: auto;
}
.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}