.image-popup {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 500;
  background-color: rgba(0, 0, 0, 0.8);
  height: 100%;
  width: 100%;
  display: none;
}

.image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  z-index: 500;
  height: 600px;
  border-radius: 10px;
}

.image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.times {
  font-size: 50px;
  position: absolute;
  top: 5px;
  right: 10px;
  font-weight: 900;
  color: #fff;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .image {
    width: 90%;
  }
}
