.publicacion {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 1em;
}

article {
    padding: 1em;
    width: 70%;
    display: flex;
    flex-direction: column;
    align-items: center;

    figure {
       
        figcaption {
            margin-top: 1px;
            padding: 5px;
            background-color: #eeeeeecc;
            font-style: italic;
        }

        img {
            object-fit: scale-down;
            max-width: 700px;
            border-radius: 5px;
            box-shadow: 1px 1px 1em #ddd;
        }
    }
    section{
        text-align: justify;
    }

    h1 {
        text-align: center;
    }

    .contenido {
        width: 100%;
        padding: 1rem;
        text-align: justify;
        text-wrap: balance;
        line-height: 1.4rem;



        figure.image {
            width: 100%;
            margin: 0;
            display: flex;
            justify-content: center;

        }
    }
}