.modal {
  align-items: center;
  bottom: 0;
  display: none;
  justify-content: center;
  left: 0;
  opacity: 1;
  overflow: hidden; /* nicht sichtbar */
  padding: .8rem;
  position: fixed;
  right: 0;
  top: 0;
}
 
/* zeige div wenn target selector angesprungen wird  */
.modal:target {
  display: flex; /* anzeigen */
  opacity: 1;
  z-index: 400;
}
 
/* Animation einblenden der Box  */
.modal:target .modal-container {
  animation: slide-down .2s ease 1;
  z-index: 1;
}
 
/* Die eigentliche box mit weißem Hintergrund und Schatten  */
.modal-container {
  background: #fff;
  border-radius: .1rem;
  box-shadow: 0 .2rem .5rem rgba(48, 55, 66, .3);
  display: flex;
  flex-direction: column;
  max-height: 75vh;
  max-width: 640px;
  padding: .8em;
  width: 100%;
}