/*allgemein*/

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.wrapper{
    background-color: #FAEFE3;
}

.heroSection
{
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 8%;
    background-color: #FAEFE3;
}
.gallery{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 30px;
}

.gallery img{
    width: 100%;
}

.marginTop{
    margin-top: 50px;
}

/*PC*/

@media only screen and (min-width: 1001px){
    .heading{
        width: 1000px;
        padding-top: 100px;
        padding-bottom: 80px;
    }
    .divider{
        margin-bottom: 80px;
    }
    .gallery{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
        grid-gap: 30px;
    }
}

/*mobile */

@media only screen and (max-width: 1000px){
    .heading{
        width: 300px;
        padding-top: 80px;
        padding-bottom: 50px;
    }
    .divider{
        margin-bottom: 30px;
    }
}