dialog:modal {
  text-align: center;
  border-radius: 5px;
  border: 1px solid #727272;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  padding: 1rem 1rem;
  max-width: 400px;
}

  dialog.error:modal {
    background-color: #f1cccc;
  }

dialog p.head {
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.2em;
}

dialog p {
  font-weight: 200;
  margin: .5rem 1rem;
}

dialog button {
  margin-top: .5rem;
  font-family: 'DM Sans', sans-serif;
  border: 1px solid lightgrey;
  border-radius: 5px;
  padding: .5rem 1rem;
  box-shadow: 1px 1px 2px #d0d0d0;
  cursor: pointer;
  background-color: #f3f3f3;
  color: black;
  transition: background-color .2s ease;
}

  dialog button:hover {
    background-color: #ecebeb;
  }

  dialog button:active {
    box-shadow: 1px 1px 2px #aaaaaa;
  }


dialog.error button {
  border: 1px solid #f98c8c;
  box-shadow: 1px 1px 2px #d0b4b4;
  background-color: #ffb7b7;
}

  dialog.error button:hover {
    background-color: #fcacac;
  }

  dialog.error button:active {
    box-shadow: 1px 1px 2px #b79e9e;
  }


::backdrop {
  background-color: rgba(0, 0, 0, 0.2);
}