body {
  color: white;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: black;
}
img {
  max-width: 95%;
  max-height: 95%;
  border: solid black 2px;
  border-radius: 8px;
}
.photo_frame {
  margin-bottom: 1.5em;
  border: solid white 0.75em;
  background-color: white;
  position: relative;
  width: 90%; /* Adjust as needed */
  height: 90vh; /* Adjust as needed */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 15px;
}
.photo_pre {
  position: absolute;
  height: 75%;
  top: 0;
  width: 100%;
  padding-top: .25em;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 2; /* Higher value means it's on top */
}
.photo_text {
  color: black;
  position: absolute;
  height: 24%;
  justify-content: center;
  width: 100%;
  top: 76%;
  font-size: 1.2em;
  font-weight: bold;
  z-index: 1; /* Lower value means it's underneath */
}