body {
  background: rgb(255, 255, 255);
  margin: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

/* .photos {
   display: flex;
   flex-direction: row;
   flex-wrap: wrap;
} */
/* 
img {
  height: 100vh;
} */

#main-image {
  max-width: 100vw;
  max-height: calc(100vh - 20px);
}

#blog {
  position: absolute;
  top: 0;
  left: 0;
  font-family: 'Noto serif';
}

#main {
  font-style: italic;
  padding: 10px;
  height: 33.33vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#gallery {
  flex: 1;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  max-width: 100%;
  overflow-y: auto;
}

#gallery img {
  width: 100%;
  height: auto;

  object-fit: cover;

  border-radius: 4px;
}

/* Ensure maximum 5 columns */
@media (min-width: 1200px) {
  #gallery {
    grid-template-columns: repeat(5, 1fr);
  }
}}

