How to Remove the Blue Highlight / Background When Pressing a Link on Mobile on WordPress Websites

The CSS Required to do:

* {
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0) !important; 
    -webkit-focus-ring-color: rgba(255, 255, 255, 0) !important; 
    outline: none !important;
}

Ref.