.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.8);
}

.modal-content {
  display: block;
  margin: auto;
  max-width: 90%;
  max-height: 80vh;
  border-radius: 10px;
}

.close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
}

#caption {
  text-align: center;
  color: #f1f1f1;
  padding: 10px;
  font-size: 16px;
  max-width: 90%;
  margin: auto;
}
#caption a {
  color: rgb(100, 170, 255);
}

.modal-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  border-radius: 10px;
  padding: 10px;
  max-width: 90%;
  max-height: 100%;
  margin: auto;
  box-sizing: border-box;
}