.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.popup-image {
  max-width: 80%;
  max-height: 80%;
  margin: auto;
  border: 5px solid #fff;
  box-shadow: 0 0 30px #000;
  cursor: zoom-in;
}

.zoomed-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  max-width: 90%;
  max-height: 90%;
  z-index: 1000;
  cursor: zoom-out;
}

.zoomed-image img {
  max-width: 100%;
  max-height: 100%;
  cursor: zoom-out;
}

.goto-section {
  position: relative;
  background-color: var(--bs-primary);
  color: #fff;
  padding: 5px 10px;
  padding-left: 35px;
  border-radius: 5px;
  text-decoration: none;
}

.goto-section::before{
  content: "🔗";
  position: absolute;
  left: 10px;
}
