.overlay {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0, 0.5);
  z-index: 9999;
}
.overlay .close {
  position: absolute;
  top: 4rem;
  right: 10rem;
}
.overlay .content__container{
  display: grid;
  place-items: center;
}
.overlay .content__container img {
  max-width: 100%;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.overlay.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media only screen and (min-width: 64rem) {
  .overlay .content__container img {
    max-width: 75rem;
  }
}