

.footer {
    position: relative;
    margin-top: 90px;
}


.columns {
    max-width: 1280px;
    margin: auto;
    columns: 3 280px;
    column-gap: 1rem;
    font-size: 1.2rem;
}
.box {
    /*background: red;*/
    color: white;
    margin: 0 0 1rem;
    display: inline-block; /* stops block being split across columns. Could use break-inside: avoid for modern browsers; */
    width: 100%;
    break-inside: avoid;
    text-align: center;
    font-weight: bold;
    height: 419px;
}
.box:nth-child(odd) {
    /*background: blue;*/
}

.box img{
    width: 100%;
    height: 100%;
    object-fit: contain;

}


.gallery-section{
    padding-block: 55px 100px;
}


.my_gallery{
    padding-top: 30px;
}


@media screen and (max-width: 575px){
    .gallery-section {
        padding-inline: 20px;
    }
}
