.gallery {
    /*background-color: red;*/
    /*display: none;*/
}


.gallery img {
    /*width: 100%;*/
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
    padding: 53px;
    background-color: white;
    box-shadow: 0px 0px 32px 12px gray;
    /*display: block;*/
    margin-bottom: 33px;

    width: calc(80% - 0px);


}


@media (max-width: 991px) {

    .gallery img {
        /*width: 100%;*/
        height: auto;
        border-radius: 8px;
        transition: transform 0.3s ease-in-out;
        padding: 38px;
        background-color: white;
        box-shadow: 0px 0px 32px 12px gray;
        /*display: block;*/
        margin-bottom: 33px;

        width: calc(80% - 0px);


    }

}


.center-content {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Zarovnání na střed vertikálně */
    align-items: center; /* Zarovnání na střed horizontálně */
    text-align: center; /* Zarovnání textu */
}


/*.gallery img:hover {
    transform: scale(1.05);
}*/


/* Když je obrázek ve středu stránky, zvětší se o 5 % */
.gallery img.in-view {
    transform: scale(1.08);
}


.gallery .image-name {
    margin-top: 22px;
    margin-bottom: 42px;
    font-size: 16px;
    font-weight: bold;
    color: #212123;
    color: #515151;
    /*color: #b5b3b3;*/

}



