.painting-content{
    margin-top: 100px;
}

.painting-content div:first-child{
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    align-items: center;
    margin-bottom: 2vw;
}

.painting-content div:first-child img {
    object-fit: contain;
    width: 100%;
}

.painting-content div:nth-child(2){
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 2vw;
    margin-bottom: 2vw;
}

.painting-content div:nth-child(2) div{
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    padding-top: 100%;
    margin: 0;

}

.painting-content div:nth-child(2) div:nth-child(1){
    background-image: url("../img/9.png");
}
.painting-content div:nth-child(2) div:nth-child(2){
    background-image: url("../img/8.png");
}
.painting-content div:nth-child(2) div:nth-child(3){
    background-image: url("../img/7.png");
}
.painting-content div:nth-child(2) div:nth-child(4){
    background-image: url("../img/6.png");
}
.painting-content div:nth-child(2) div:nth-child(5){
    background-image: url("../img/5.png");
}
.painting-content div:nth-child(2) div:nth-child(6){
    background-image: url("../img/4.png");
}
.painting-content div:nth-child(2) div:nth-child(7){
    background-image: url("../img/3.png");
}
.painting-content div:nth-child(2) div:nth-child(8){
    background-image: url("../img/2.png");
}
.painting-content div:nth-child(2) div:nth-child(9){
    background-image: url("../img/1.png");
}
