body {
  gap: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.gallerySection {
  display: flex;
  flex-direction: column;
  gap: var(--deviceWidthPaddingSize);
  align-self: stretch;
  padding: 0px var(--deviceWidthPaddingSize);
  align-items: center;
  align-self: stretch;
}

.gallerySection h2 {
  align-self: stretch;
  color: var(--brandGreen);
  text-align: center;
  font-family: "Literata";
  font-size: var(--xXLargeSize);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.gallerySection .galleryImages {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  align-content: flex-start;
  gap: 30px;
  align-self: stretch;
  flex-wrap: wrap;
}

.gallerySection .galleryImages img {
  width: 350px;
  height: 350px;
  border-radius: 10px;
  box-shadow: 0px 0px 20px 0px var(--black25);
  -o-object-fit: cover;
     object-fit: cover;
  transition: filter 1s ease-in-out;
}

.imgCompressed {
  filter: blur(5px);
}

@media (max-width: 600px) {
  .gallerySection .galleryImages {
    gap: 15px;
  }

  .gallerySection .galleryImages img {
    width: 90vw;
    height: 90vw;
  }
}
