.filler-banner {
    width: 100%;
    height: 120px;
    background-color: var(--main-color);
}

.gallery-wrapper {
    width: 100%;
    height: fit-content;
    padding: 100px 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.gallery-wrapper h1 {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 4rem;
}

.gallery-wrapper h3 {
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 400;
}

.gallery-wrapper h1, h3 {
    text-align: center;
    max-width: 80%;
}

.gallery-wrapper .dark-blue-line {
    margin-bottom: 60px;
}

.gallery-images {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 90%;
    gap: 60px;
}

.gallery-image-container {
    width: 350px;
    height: 300px;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0px 0px 2px 0px black;
    transition: all 0.3s ease-in-out;
}

.gallery-image-container:hover {
    box-shadow: 0px 0px 8px 0px black;
}

.gallery-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-banner {
    width: 100%;
    height: fit-content;
    padding: 100px 0px;
    background-color: var(--main-color);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.gallery-banner > * {
    max-width: 90%;
}

.gallery-banner .button {
    background-color: var(--highlight-color);
    margin-top: 40px;
    font-size: 4rem;
}

.gallery-banner .button:hover {
    background-color: var(--compliment-color);
}