.project-header {
    background-image: url("../../src/img/Sonje/banner.png");
}

.project-header img.project-banner {
    width: 150px;
    margin-bottom: 20px;
    border-radius: 12px;
}

.gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
}

.gallery-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 120%;
}

@media screen and (max-width: 500px) {

    .project-header{
        background-image: url();
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .project-header img.project-banner {
        width: 250px;
        border-radius: 0px;
        margin-bottom: 0px;
}

}