Ironically, this page is very slow on my laptop, not because of loading too much stuff, but due to the css effects.
Running this on the dev console makes it snappy again:
let allElements = document.querySelectorAll('\*');
allElements.forEach(element => {
element.style.filter = 'none';
element.style.backdropFilter = 'none';
});