  #jsModal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 100; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  }

  #jsModal .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fff;
    color: #000;
    text-align: center;
    border-radius: 20px;
    padding: 30px 30px 70px;
    margin: 10% auto;
    width: 40%;
    overflow: hidden;
}

#jsModal button.closeModal {
      width: 30px;
      font-size: 20px;
      color: #c0c5cb;
      align-self: flex-end;
      background-color: transparent;
      border: none;
      margin-bottom: 10px;
    }
    #jsModal img {
      width: 500px;
    }
    #jsModal h2 {
        color: #525252;
        margin: 0;
        font-size: 2rem;
        font-weight: bold;
    }
    #jsModal p {
      margin-bottom: 40px;
      font-size: 18px;
      padding: 0 10%;
    }
    #jsModal a.accept {
      background-color: #00c590;
      border: none;
      border-radius: 5px;
      width: 300px;
      padding: 14px;
      font-size: 16px;
      color: white;
      text-decoration: none;
      box-shadow: 0px 6px 18px -5px rgb(119 238 202);
    }
    #jsModal a.accept:hover {
        background-color: #16ad85;
    }
  
    @media only screen and (max-width: 800px) {
        #jsModal .content {
            width: 80%;
        }
        #jsModal img {
            width: 300px;
          }
    }
    