 .popup-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0); /* Start with a transparent background */
    backdrop-filter: blur(0); /* Start with no blur */
    justify-content: center;
    align-items: center;
    z-index: 1;
    transition: background-color 0.5s, backdrop-filter 0.5s; /* Transition properties */
  }
    .popup-container.active {
    display: flex;
    background-color: rgba(0, 0, 0, 0.7); /* Fully opaque background */
    backdrop-filter: blur(5px); /* Apply blur effect */
  }
  .popup-container.active .popup-content {
    opacity: 1; /* Fully visible popup content */
  }
  
  .popup-content {
    background-color: #051622;
  text-align: center;
  width: 70%;
  height: 80%;
  padding: 20px;
  border-radius: 10px;
  position: relative;
  opacity: 0; /* Start with no opacity */
  transition: opacity 0.5s; /* Transition property for opacity */
    display: flex;
    justify-content: center;
    align-items: center;
}
  .popup-content img {
    width: 90%;
    height: 90%;
  }

  .close-popup {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 50px;
    cursor: pointer;
    color: #F5CB86;
  }