/* Photographs */
.photo_img_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;

  flex-direction: row;

}

.photo_img_container img {
    max-height: 90vh;
    max-width: 500mm;
    margin: 0em auto;
    padding: 2em;
}

.post-content h2, .post-content h1 {
    text-align: center;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    border: black 1px;
}

.photo-color-container {
  padding-top: 0.5em;
  border-radius: 20px;
}

.post-single {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  align-items: center;
}

@media not (max-width: 760px) {
  .main {
    justify-content: center;
    max-width: 100%;
    flex-basis: 100%;
  margin: 0 auto;
  }

  .post-single > header, .webring {
    max-width: var(--main-width);
  }
}

@media (max-width: 760px) {
  .main {
    padding: 0;
    margin: 0;
    width: 100%;
  }
  .post-content img {
      max-height: 90vh;
      max-width: 100%;
      margin: 0em auto;
      padding: 1em 0;
  }
}
