/* Styling for the pop-up overlay */
#popupOverlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(48, 38, 37, 0.9);
  z-index: 9999;
}

#popupContent {
  position: absolute;
  top: 50%;
  left: 50%;
    width: 800px;
  height: 800px;
  transform: translate(-50%, -50%);
 background-image: url("img/popupBK.jpg");
 background-repeat: no-repeat, repeat;  padding: 20px;
}

/* Additional CSS styling as needed */
