With the 5.9 update we’re ‘forced’ to have WordPress plonk a ton of inline styles onto all updated sites.
You can remove these inline styles by adding this to your functions.php:
// REMOVE THOSE DAMN GOOTY GLOBAL STYLES
add_action( 'wp_enqueue_scripts', function() {
wp_dequeue_style( 'global-styles' );
wp_deregister_style( 'global-styles' );
}, 100000 );