.mini-div {
    width: 100%;        /* Ocupa el 100% del ancho de la pantalla */
    height: 200px;      /* Ocupa el 100% de la altura de la ventana del navegador */
    background: #142734;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.parrafo-historias {
    color: #FFF;
    font-family: Roboto;
    font-size: 42px;
    font-weight: 400;
    line-height: 56px; /* 133.333% */
   
}
@media(max-width:1440px){
    .parrafo-historias {
        font-size: 36px;
       
    }
    
}

@media(max-width:1024px){
    .parrafo-historias {
        font-size: 22px;
        line-height: 29px;
    }
    .mini-div {
        height: 107px;
    }
}

@media(max-width:820px){
    .parrafo-historias {
        font-size: 20px;
        line-height: 23px; 
    }
    .mini-div {
        height: 107px;
    }
}
@media(max-width:768px){
    .mini-div {
        padding:40px;
        height: unset;
    }
}
@media(max-width:468px){
    .parrafo-historias {
        font-size: 18px;
        
        margin-top: 0;

    }
    .mini-div {
        height: auto;
    }
}


