.model {
    position: fixed; /* Cover the screen */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* dark overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* make sure it stays on top */
    display: none; /* hide by default */
  }
  .model.open {
    display: flex;
  }
  
  .model-inner {
    
    padding: 40px 30px;
    height: 500px;
    border-radius: 10px;
    text-align: center;
    width: 600px;
  }

  .model-img{
    height: 310px;
    width: 220px;
  }

