p {
  text-align: center;
}

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

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

.gallery-item {
    display: block;
    width: 32%;
    height: 32%;
    background-color: var(--very-light-grey);
    border-radius: 5px;
    cursor: pointer;
}

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

.gallery-item:hover {
    transform: scale(1.02, 1.02);
    overflow: hidden;
    transition: 0.3s;
    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: 800px) {
  .gallery-item {
      width: 49%;
  }
}

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