padding not working

<span> tags is a inline element and inline elements don’t react well with padding.

You can target the h1h6 as you said, but if you want to target the <span> you will need to add display: inline-block; as well for it to work with padding.

Also, this has nothing to do with WordPress as this is a pure CSS question, for future questions that don’t involve WP use stackoverflow.