.modal {
  background-color: rgba(0, 0, 0, 0.3);
}

.modal-content {
  position: relative;
  margin: 100px auto;
  width: 50%;
  height: 80%;
}
@media (max-width: 768px) {
  .modal-content {
    position: relative;
    margin: 100px auto;
    width: 80%;
    height: 50%;
  }
}
@media (min-width: 768px) {
  .modal-content {
    position: relative;
    margin: 100px auto;
    width: 50%;
    height: 80%;
  }
}
.modal-content img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.close {
  position: absolute;
  right: 2px;
  cursor: pointer;
  font-size: 30px;
  color: #000;
  /* background-color: aqua; */
}
