.containe{
   
    /* Hidden by default */
    display: none ;
    
    position: fixed;
    /* Stay in place */
    z-index: 30;
    /* Sit on top */
  
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */

    /* Fallback color */
    background-color: rgba(4, 15, 19, 0.4);
}

.popup{
    width:30%;
 
    background: #fff;
    border-radius: 10px;
    position: absolute;
    left: 50%;
    top: 65%;
    transform: translate(-50%,-50%);
    text-align: center;
    padding: 0 30px 30px;
    color: #333;

}
.popup h2{
    font-size: 20px;
    font-weight: 500;
    margin: 30px 0 10px;

}

.popup img{
    width: 100px;
    margin-top: -15%;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgb(0, 0, 0,0.2);

}
.ok{
    padding: 10px 100px;
    background:rgb(7, 185, 78);
    border: 0;
    text-align: center;
     outline: none;
    cursor: pointer;
    font-size: 14x;
    font-weight: 30px;
    border-radius: 30px;
   

}

@media only screen and (max-width: 1030px) {
    .popup{
        width:65%;
        background: #fff;
        border-radius: 30px;
        position: absolute;
        left: 50%;
        top: 60%;
       
        transform: translate(-50%,-50%);
        text-align: center;
        padding: 0 30px 30px;
        color: #333;
    
    
    }
    .popup img{
        width: 100px;
        margin-top: -10%;
        border-radius: 50%;
        box-shadow: 0 2px 5px rgb(0, 0, 0,0.2);
    
    }
    .popup h2{
        font-size: 20px;
        font-weight: 500;
        margin: 30px 0 10px;
    
    }
      }

      @media only screen and (max-width: 600px) {
        .popup{
            width:90%;
            background: #fff;
            border-radius: 30px;
            position: absolute;
            left: 50%;
            top: 60%;
           
            transform: translate(-50%,-50%);
            text-align: center;
            padding: 0 30px 30px;
            color: #333;
        
        
        }
        .popup img{
            width: 100px;
            margin-top: -20%;
            border-radius: 50%;
            box-shadow: 0 2px 5px rgb(0, 0, 0,0.2);
        
        }
        .popup h2{
            font-size: 20px;
            font-weight: 500;
            margin: 30px 0 10px;
        
        }
          }


  