Christoph it think for me it would make sense to block interface elements. In 3D the mouse pointer is a little more disturbing than in 2D. And if there's a full 16:9 image on the display, the naviagtion elements are always visible if you move the pointer to the left of right edge of the screen.
You can do that with custom CSS if you have a plan. You need to be very careful of course, because by blocking interface elements, you are blocking the visitors from being able to interact.
Christoph The linked image is just the direct output of a developed RAW (done with DxO) with no further editing. The exif should be okay, an the exposure time is shown correctly in other apps like the Windows Photo-App.
I deep tested this image, and EXIF is corrupted with unicode issues. I'm pretty sure you using some editor that is messing with these fields, because no camera would do that. It's ok that a dedicated desktop app can read this, but when you are asking PHP to read these values into JSON for usage in a website, you need to avoid corrupt formatting. The file size of your EXIF output is 60 kb (that's a massive amount of data). I can't paste it all, but here are some outtakes:
Notice: exif_read_data(bild010.jpeg): Potentially invalid endianess, trying again with different endianness before imminent failure. in /Users/karlward/sites/x3/content/exif/exif-viewer.php on line 4
...
Warning: Array to string conversion in /Users/karlward/sites/x3/content/exif/exif-viewer.php on line 7
MAKERNOTE.UndefinedTag:0x0020: Array
...
MAKERNOTE.UndefinedTag:0x0060: ���������������,���� L��@�T��\���� �d�!���"���#���$���%��(� ��0� ��1� �2� (�3� L�4� \�5�l�6�t�@�|�A���B�4�C���H���P� �Q�<�R�h�S���T���U� ��V� ��W� �a������1353489<�:652101//-...015420-..,--..-.-068740.---,,,./0/2=C:50--.--.,-
// the above goes on and masses almost 50kb ...
...
EXIF.ExposureTime: 20/1
// seems correct ...
...
MAKERNOTE.ExposureTime: 0/0
// but you also have the above, which you or your app is adding.
You can try this yourself by using the super simply PHP script here:
https://write.corbpie.com/getting-image-exif-data-with-php/
I can see that it works in your app, but I can't resolve EXIF that has been modified and has clear issues that affects how PHP reads it.