#popup-container {
  display: none;
  top: 0;
  left: 0;
  position: fixed;
  height: 100%;
  width: 80%;
  align-items: center;
  justify-content: center;
  padding-left:10%;
  padding-right:10%;
}

.popup {
  display: none;
  border-top: 8px solid rgb(68, 0, 97);
  background-color: #ff4b9c;
  padding: 50px;
  position: relative;
  box-shadow: 0 0 20px rgb(68, 0, 97);
  color: black;
  max-width: 800px;
  line-height: 1.6;
}

#popup-shade {
  top: 0;
  left: 0;
  position: fixed;
  background-color: rgb(68, 0, 97, .6);
  width: 100%;
  height: 100%;
}

.popup-close {
  display: block;
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
}