body {
  margin: 0;
}
.main {
  background-image: url("/images/bg.png");
  background-size: cover;
  background-position: top;
  min-height: 100vh;
  width: 100%;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.main::before {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(7px);
}

body.modal-open {
  overflow: hidden;
}
.modal {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  overflow-y: auto;
  z-index: 4001;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  justify-content: center;
  padding: 40px 0px;
}
.modal .modal__content {
  margin: auto 0;
  text-align: center;
  width: 90%;
  height: max-content;
  max-width: 400px;
  padding: 16px 8px;
  border-radius: 16px;
  background-color: white;
}
.close {
  display: block;
  margin-left: auto;
  margin-bottom: 4px;
  width: fit-content;
}
