.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 300px;
  background-color: transparent;
  padding: 20px;
  border-radius: 10px;
  overflow: hidden;
}

.modal-content {
  background-color: #fefefe;
  border: 1px solid #888;
  padding: 10px;
  border-radius: 10px;
  max-height: 400px;
  overflow-y: auto;
}

.modal-image {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.close {
  color: #aaa;
  float: right;
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
}

.modal-text {
  text-align: justify;
}
