.modal-wrap {
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    display:none;
    justify-content:center;
    align-items:center;
    background:rgba(0,0,0,.7);
    z-index:1000;
}

.modal-subscribe {
    padding: 25px;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 20px;
    
}

.modal-subscribe h2 {
    margin-bottom:20px;
}

.modal-subscribe button {
    border: none;
    width: 150px;
    height: 40px;
    border-radius: 50px;
    color: #fff;
    cursor: pointer;
}