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

.heading{
    margin-top: 50px;
    margin-bottom: 30px;
}

.image{
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-top: 80px;
}

#party{
    margin-top: 0;
}

.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));
}

.gallery img{
    width: 100%;
}

/*PC*/

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

    .image{
        margin-top: 150px;
        height: 500px;
    }
}

/*mobile */

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