.modal-container {
  height: 100vh;
  width: 100vw;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.5);
  /* opacity: 0.5; */

  display: none;
  z-index: 1;
}
.modal {
  display: flex;
  width: 40rem;
  max-width: max-content;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 5px;
  padding: 10px;
  background-color: var(--lynx-white);
  border: 1px solid var(--black-color);
}
.show {
  display: block;
}
.show-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
