/*CAMBIAR COLOR DE FONDO DE ABAJO */
#Cuentos_02 {
    
    background: #333;
    text-align: center;
    padding: 20px;
    /* Color de Fuente */
    color: #fff;
    
}

#Cuentos_02 .contenedor {
    
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    
}

.Cuentos_02b {
    
    margin: 20px;
    
}

.Cuentos_02b img {
    
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 7px solid #fff;
    
}

/*MOVIL*/
@media (min-width:480px) {
    .Cuentos_02b {
        width: 40%;
    }
}

/*PORTATIL*/
@media (min-width:1024px) {
    .Cuentos_02b {
        width: auto;
    }
}