 
  dialog {
    text-align: center;
    background-color: #fff;
    color: #333;
    border: none;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 3px 10px 2px rgba(0, 0, 0, 0.5);
    width: 500px;
    max-width: 80%;
  }
  
  dialog[open] {
    animation: toggle-modal .3s ease-in-out;
  }
  
  dialog::backdrop {
    background: rgba(0, 0, 0, .3);
  }
  
  dialog h2 {
    margin: 0 0 30px;
    color: #eee;
  }
  
  input,
  button {
    padding: 8px 20px;
    margin-bottom: 5px;
    border-radius: 3px;
    border: none;
    cursor: pointer;
  }
  
  button {
    color: #fff;
    background: #04b95b;
  }
  
  .close-modal {
    background: #13844B;
    border: 0px;
  }
  
  .open-modal {
    margin-bottom: 40px;
  }
  
  @keyframes toggle-modal {
    from {
      opacity: 0;
    }
  
    to {
      opacity: 1;
    }
  }

  .dialog-container {
    width: 100%;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .dialog-container img {
    width: 200px;
  }
  .dialog-container a {
    text-decoration: none;
    color: #e94444;
    font-size: 1.2rem;
  }
  .dialog-container a:hover {
    text-decoration: none;
    color: #c93434;
    font-size: 1.2rem;
  }
  .dialog-container h3 {
    font-size: 1.2rem;
    font-weight: 400;
  }