section#gallery {
  flex-wrap: wrap;
  padding: 50px 0px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.gallery-image {
    border-radius: 8px;
    cursor: pointer;
    box-shadow: var(--shadow);
    height: 100%;
    max-width: 45%;
    max-height: 400px;
    max-width: 180px;
    align-self: flex-start;
}

.gallery-image:hover {
  transition: all 0.2s ease-in-out;
  transform: scale(1.04);
}

section#modal-container {
  background-color: rgba(0, 0, 0, 0.4);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

img#modal-image {
  border-radius: 12px;
  width: auto;
  height: auto;
  max-height: 80%;
  max-width: 80%;
}
