div.photoset {
  padding: 2px;
  background-color: #ffffff;
  max-width: 600px;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
div.photoset .photo {
  position: relative;
  flex-grow: 1;
  min-width: calc(100% / 3);
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 700px) {
  div.photoset .photo {
    min-width: calc(100% / 2);
  }
}
/*
@media screen and (max-width: 460px) {
  div.photoset .photo {
    min-width: 100%;
  }
}
*/

div.photoset .photo:after {
  padding-top: 83.33333%;
  display: block;
  content: "";
}
div.photoset .photo:before {
  z-index: 2;
  position: absolute;
  content: "";
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  box-shadow: inset 0 0 0 2px #ffffff;
}
div.photoset .photo:nth-child(1) {
  width: 100%;
}
div.photoset.square .photo:after {
  padding-top: 100%;
}
div.photoset.portrait .photo:after {
  padding-top: 120%;
}

html, body {
  background-color: #ece9e2;
  height: 100%;
  margin: 0;
  padding: 0;
  min-height: 75rem;
}

.photo-index {
  overflow-y: scroll;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 10px;
}

.boogaloo-regular {
  font-family: "Boogaloo", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.navigation-buttons {
    position: fixed;
    bottom: 4rem; /* Position the buttons at the bottom */
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transform: translateY(-50%);
    padding: 0 2rem;
    z-index: 9999; /* Ensure this is higher than any other z-index on the page */
}

#backButton, #nextButton {
    position: absolute;
    padding: 10px 20px;
    font-size: 18px;
    color: #fff;
    background-color: #ff6b81; /* Soft pink color */
    border: none;
    border-radius: 50px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

#backButton:hover, #nextButton:hover {
    background-color: #ff4757; /* Slightly darker pink on hover */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

#backButton {
    position: absolute;
    left: 2rem;
}

#nextButton {
    position: absolute;
    right: 2rem;
}

.navbar-brand {
    color: #ff6b81 !important; /* Soft pink color */
    font-weight: bold;
    display: flex;
    align-items: center;
    font-size: 2rem;
}

.navbar-brand i {
    margin-right: 8px;
}

.post-image {
  text-align: center;
}

video {
    width: 100% !important
}

visualSoundContainer__related g-transition-transform {
  display: none !important;
}