section p {
  text-align: left;
  width: 70%;
  margin: 0 auto;
  padding-top: 1em;
  padding-bottom: 1em;
}

.gallery-section {
  background-color: white;
}

.gallery-section:nth-child(odd) {
  background-color: var(--very-light-grey);
}

.gallery {
	display: flex;
  padding: 80px 0;
	justify-content: flex-start;
  flex-grow: 1;
  flex-shrink: 1;
  gap: 5px;
  flex-wrap: wrap;
}

.gallery-item {
    display: block;
    width: 24.4%;
    aspect-ratio: 1;
    background-color: grey;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.gallery-item img {
  display: block;
  width: 100%;
}

.gallery-item:hover {
    transform: scale(1.02, 1.02);
    filter: brightness(90%);
    overflow: hidden;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

@media(max-width: 930px) {
  section p {
    width: 100%;
  }

  .gallery-item {
      width: 31%;
  }
}

@media(max-width: 750px) {
  .gallery-item {
      width: 49%;
  }
}


@media(max-width: 800px) {
  .gallery-item {
      width: 49%;
  }
}

@media(max-width: 650px) {
  .gallery-item {
      width: 47%;
  }
}