I think I figured it out by adding the code:
// enqueue parent theme styling
function child_parent_styling(){
wp_enqueue_style( ‘nirvana-style’, get_template_directory_uri() . ‘/style.css’, array(), _CRYOUT_THEME_VERSION ); // restore parent stylesheet
wp_enqueue_style( ‘nirvana-child’, get_stylesheet_directory_uri() . ‘/style.css’, array( ‘nirvana-style’ ), ‘0.7’ ); // enqueue child
}
add_action(‘wp_enqueue_scripts’,’child_parent_styling’);
Website: www.germanbunkers.com