.hero-image-wrapper {
    background-image: url("/images/dachdecker-hero.jpg");
}

section {
    margin: 50px 0 80px 0;
}

section .head {
    margin-bottom: 50px;
}

.divider {
    height: 40px;
    filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 20%));
    background-color: #b6d4df;
}

.image-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 15px;

    @media screen and (min-width: 768px) {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: normal;
    }
}

.image-gallery .image-tile {
    max-width: 400px;
    max-height: 400px;
    aspect-ratio: 1;
    overflow: hidden;
    z-index: -1;
    filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 30%));

    @media screen and (min-width: 768px) {
        max-width: 200px;
        max-height: 200px;
    }
}

.image-gallery .image-tile img {
    width: 100%;
}