.popup_overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  z-index: 10000;
  background-color: rgb(160, 160, 160, 0.9);
}

.popup {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.close_button {
  position: relative;
  width: max-content;
  height: 50px;
  align-self: end;
  border: 1px solid black;
  margin: 10px 0 5px 0;
  background-color: white;
  cursor: pointer;
  font-size: 15px;
  color: blue;
}

.image {
  max-height: 90%;
}


@media only screen and (max-width: 480px) {
  .image {
    max-width: 100%;
}
}