.popup-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: white;
  background-color: rgba(0, 0, 0, 0.9);
}

.popup-header {
  color: #be0f7d;
  font-size: x-large;
  font-weight: bold;
  margin-top: 20px;
}

.popup-text {
  color: white;
  text-align: center;
}

.popup-button {
  margin: 40px auto;
  padding: 8px 10px 8px 10px;
  border-radius: 15px;
  background-color: rgba(190, 15, 125, 0.7);
  border-style: none;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.popup-button:hover {
  background-color: #be0f7d;
  color: white;
  text-decoration: none;
}

.popup-close {
  display: none;
}
/*# sourceMappingURL=popup.css.map */