How to change in css with a custom theme?

Since you are working on a child theme you could try the following. This requires that you have removed @import from your child themes style.css or removed the hook, that loads the parent stylesheet in your child themes functions.php.

Add this to your functions.php in the child theme:

function wp_enq_theme_styles() {

    $parent_style="parent-style";
    wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' );
    wp_enqueue_style( 'child-style', get_stylesheet_directory_uri() . '/style.css', array( $parent_style ) );
}
add_action( 'wp_enqueue_scripts', 'wp_enq_theme_styles' );

What this code does is enqueuing the parent style first and then the child style. The array part of the child-style tells wordpress that the child style is dependent on the parent style thus it is loaded after the parent style. Hence your child styles will override the parent styles.

Hope this helps.

PS. you can always read more about it here