.title{
    color: #7d3947;
    text-align: center;
    font-weight: 900;
    font-size: 50px;
}
.texto{
    color: #000;
    text-align: center;
    font-size: 30px;
    padding: 10px;
}
.imgprincipall{
    width: 100%;
    max-width: 1000px;
    margin: 1rem auto;
    column-count: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.imgprincipal{
    width: 90%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px;
}
.galery-content{
    width: 90%;
    max-width: 1000px;
    margin: 1rem auto;
    column-count: 1;
}
.galery_itemm{
    padding: 1em;
    background-color: #cacaca;
    margin-bottom: 1em;
    page-break-inside: avoid;
    break-inside: avoid;
    text-align: center;
    font-family: 'lucida calligraphy';
    color: #7d3947;
    font-weight: 500;
    font-size: 1.1rem;
}

.galery_item{
    padding: 1em;
    background-color: #cacaca;
    margin-bottom: 1em;
    page-break-inside: avoid;
    break-inside: avoid;
    text-align: center;
    font-family: 'lucida calligraphy';
    color: #7d3947;
    font-weight: 500;
    font-size: 1.1rem;
    transition: transform .3s;
}
.galery_item img{
    width: 100%;
}

@media (min-width: 768px) {
    .galery-content{
        column-count: 2;
    }
}

@media (min-width: 1024px) {
    .galery-content{
        column-count: 4;
    }
    .galery_item:hover{
        transform: scale(1.1, 1.1);
        cursor: pointer;
    }
}