@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap');
*{
    box-sizing: border-box;
}
.home-intro{
    background-color: rgb(29, 29, 29);
    padding:7rem 2rem;
    text-align: center;
    color: #fff;
    font-size: 3rem;
    font-family: "DM Sans" sans-serif;
}
.corporate-header, .project-header, .playful-header{
    font-size: 3rem;
    font-family: "Dancing Script", cursive;
    text-align: center;
    padding-block: 2rem;
}
#corporate-gallery, #freestyle-gallery, #projects-gallery{
    display: flex;
    flex-wrap: wrap;
}
body img {
    max-width: 100%;
}
.corporate-gallery-div, .freestyle-gallery-div, .projects-gallery-div{
    width: 25%;
}
@media screen and (max-width: 600px){
    .corporate-gallery-div, .freestyle-gallery-div, .projects-gallery-div{
        width: 100%;
    }
}