.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.popupContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #F6F5F0;
  height: 80%;
  width: 70%;
  border-radius: 25px;
}

.popup p {
  color: #313131;
  margin: 0.5em;
  text-align: center;
  font-size: 1.25em;
}

.popup img {
  max-width: 90%;
  max-height: 75%;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #F6F5F0;
  border: none;
  width: 30px;
  height: 30px;
  cursor: pointer;
  font-weight: bold;
  border-radius: 50%;
}

@media screen and (max-width: 500px) {
  .popup p {
    margin: 0.5em;
    font-size: 1em;
  }
}

@media screen and (max-width: 500px) and (max-height: 900px) {
  .popupContainer{
    height: 60%;
    width: 90%;
  }
}
