.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.popup.show {
  display: flex;
  opacity: 1;
}

.popup-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 360px;
  height: 520px;
  object-fit: cover;
}

.name-strip {
  width: 100%;
  background-color: gray;
  color: white;
  text-align: center;
  padding: 10px 0;
}

.close {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #666;
  border-radius: 50%;
  top: 40px;
  right: 40px;
  color: white;
  font-size: 50px;
  line-height: 30px;
  width: 50px;
  height: 50px;
  cursor: pointer;
}

.close:hover,
.close:focus {
  background-color: black;
}

.popup-image {
  border: none;
}

.footer-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #666;
  position: absolute;
  bottom: 0;
  right: 50%;
  transform: translateX(50%);
  width: 100%;
  height: 46px;
  color: white;
}

@media (max-width: 480px) {
  .popup-content {
    width: 90%;
    height: auto;
  }

  .popup-content img {
    width: 80%;
    height: auto;
  }
}
