.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 12;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.2s ease, opacity 0.19s ease;
}

.modal.show {
  visibility: visible;
  opacity: 1;
}

.modal .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.514);
  backdrop-filter: blur(8.9);
  z-index: 20;
}

.modal-window {
  position: relative;
  z-index: 23;
  height: 40vh;
  width: 40%;
  border-radius: 30px;
  text-align: center;
  box-shadow: 0 10px 15px #000;
  background-color: #e7c69c;
  font-size: clamp(1.5rem, 1.375rem + 0.6667vw, 2.375rem);
  padding: 26px 34px;
  align-content: center;
  font-weight: 600;
}

@media (width < 838px) {
  .modal-window {
    width: 60%;
  }
}

@media (width < 838px) {
  .modal-window {
  height: auto;
  }
}
