.popUp {
  position: fixed;
  height: 100vh;
  width: 100vw;
  margin: auto;
  z-index: 100000;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(0, 0, 0, 0.436);
  -webkit-backdrop-filter: blur(30px) brightness(80%);
          backdrop-filter: blur(30px) brightness(80%);
}
.popUp .inner {
  background-color: rgba(96, 96, 96, 0.583);
  -webkit-backdrop-filter: blur(50px) brightness(70%);
          backdrop-filter: blur(50px) brightness(70%);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 20px;
  border-radius: 10px;
  font-size: 1.3rem;
  -webkit-box-shadow: 0px 0px 10px 10px rgba(47, 47, 47, 0.249);
          box-shadow: 0px 0px 10px 10px rgba(47, 47, 47, 0.249);
}
.popUp .buttonContainer {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}
.popUp button {
  border: none;
  background: rgba(0, 0, 0, 0.175);
  color: white;
  border-radius: 10px;
  margin: 10px;
}/*# sourceMappingURL=popup.css.map */