Aggiungi questo al tuo js:
let isSafari = navigator.vendor.match(/apple/i) &&
!navigator.userAgent.match(/crios/i) &&
!navigator.userAgent.match(/fxios/i) &&
!navigator.userAgent.match(/Opera|OPT\//);
if (isSafari) {
document.getElementsByTagName('body')[0].innerHTML= = "Browser non supportato, si prega di usare chrome, firefox o edge";
}