.texto-resumen {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;               /* margen interno */
    margin: 1rem;                /* margen externo de todos los lados */
    color: rgb(11, 11, 112);
    font-family: "Lilita One";
    text-align: center;
    height: auto;                /* evita ocupar toda la altura del viewport */
    min-height: fit-content;
    margin-top: 2rem;
}

body.dark-mode .texto-resumen{
    color: bisque;
}