.modal {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 10px;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(28, 26, 26, 0.5);
  box-shadow: 0 5px 150px rgba(64, 64, 64, 0.5);
  z-index: 100;
  opacity: 1;
  border: none;
  flex-direction: column;
}
.modal h1 {
  align-self: center;
  left: 340;
  position: relative;
  background: white;
  padding: 10px;
  /* width: 3%;
   border-radius: 20px; */
  cursor: pointer;
}

@media (max-width: 450px) {
  .modal h1 {
    left: 0;
  }
  #modal-img {
    max-height: 90%;
    /* max-width: 99%; */
  }
}
@media (min-width: 768px) {
  #modal-img {
    height: 60%;
    width: 60%;
  }
}
