

.gallery-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}

.gallery-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 160px;
    margin-bottom: 60px;
    padding: 0 0px;
    flex-direction: column;
}

.gallery-wording {
  width: 100%;
  max-width: 1100px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 20px;
}

.gallery-wording h2 {
  font-size: var(--font_large_h2);
  font-weight: 100;
  line-height: 1em;
  color: var(--accent_color);
  font-family: var(--header_font);
}

.gallery-wording span {
  color: var(--main_color);
}

.gallery-imgs {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.gallery-imgs img {
    width: 250px;
    height: 250px;
    padding: 5px;
    border-radius: 15px;
    opacity: 1;
    object-fit: cover;
}


