body {
  overflow: hidden;
}
#popup {
 z-index: 100;
}
#popup > * {
 text-transform: capitalize;
}
#popup, #background, #foreground {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
#background {
  background: hsla(0, 0%, 0%, .7);
  backdrop-filter: blur(5px);
}
#foreground {
  left: 50%;
  top: 50%;
  background: white;
  width: 90%;
  height: min-content;
  border: 1px solid hsla(0, 0%, 70%, 1);
  border-radius: 5px;
  transform: translate(-50%, -50%);
}
#popupClipart {
  position: absolute;
    width: 180px;
    z-index: -1;
    top: -95px;
}
#popupTitle {
  padding: 40px;
  background-color: #eea412;
  border-top: 2px solid hsla(0, 0%, 70%, 1);
  border-radius: 5px 5px 0 0;
  color: white;
  text-shadow: 0 0 3px black;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  line-height: 32px;
  white-space: nowrap;
}
e {
  color: #0066cc;
  text-shadow: none;
}
#popupBody {
  padding: 20px 40px 40px;
}
#popup a {
  vertical-align: middle;
  color: hsl(210, 100%, 50%);
}
#popup a:hover {
  color: hsl(210, 100%, 70%);
}
#popup span {
  font-variation-settings:
  'FILL' 0,
  'wght' 800,
  'GRAD' 0,
  'opsz' 20;
  font-size: 16px;
  vertical-align: super;
}
#popupParagraph {
  padding: 20px 10px;
  text-align: center;
}

@media screen and (min-width: 480px) {
  #foreground {
    width: 70%;
  }
}
@media screen and (min-width: 900px) {

  #foreground {
    width: 40%;
  }
}