@import url("./css/reset.css");
@import url("./css/baseElementStyle.css");

.container {
  padding-top: 40px;
}
.wrapper {
  width: fit-content;
  margin: 0 auto;
  padding: 10px;
  border-radius: 4px;
  box-shadow: rgba(192, 34, 245, 0.641) 0px 5px 15px;
}

.head {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 10px;
}

.overlay {
  width: 100vw;
  height: 100vh;
  background-color: blueviolet;
  position: absolute;
  top: 0;
  opacity: 0;
  z-index: -2;
}

.overlay_show {
  opacity: 0.8;
  z-index: 2;
}

.modal {
  min-width: 290px;
  max-width: 1280px;
  width: 70vw;
  height: 50vh;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  border-radius: 2px;

  z-index: -1;
  pointer-events: none;
}

.modal_show {
  opacity: 1;
  z-index: 3;
  pointer-events: all;
}

.modal:hover,
.modal:active {
  box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}

.modal-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  padding: 10px;
  height: 100%;
}

.modal__text {
  transition: 0s;
  max-width: 100%;
  max-height: 80%;
  width: 100%;
  height: 100%;
}
