.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    background: rgba(20, 20, 20, 0.7);
    padding: 5%;
  }
  
  .popup-image-container {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 700px;
    background: #fe1413;
    padding: 40px;
    
    padding-right: 40px;
  }
  
  .popup-image-container .close-button {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 20px;
    cursor: pointer;
  }
  
  .popup-image {
    width: 100%;
    object-fit: contain;
  }
  
.popup-content {
  color: #ffffff;
  font-family: 'Beausite Classic', sans-serif;
}