I still see a blank greenish-gray page.
It appears to be because the BODY element has a CSS rule setting "opacity: 0", which appears to be for the purpose of enabling a CSS transition to fade in the page on load. Not exactly minimalism in terms of complexity, but it does appear minimalist in terms of content when the page is blank. :P
Presumably the transition is triggered by some JavaScript. However, that JavaScript fails to execute because cookies are disabled, which causes an error:
Uncaught DOMException: Failed to read the 'localStorage' property from 'Window': Access is denied for this document.
at new u (https://volument.com/v1/volument.js:17:858)
at window.volument (https://volument.com/v1/volument.js:17:133)
at https://volument.com/global/index.js?b:1:14673
at https://volument.com/global/index.js?b:1:60085
As a result, when cookies are
disabled and JavaScript is
enabled, the page appears blank.
If I had a dollar for every time nowadays that I see a blank Web page because of invisible-by-default content that's made visible by JavaScript that fails to execute because it can't handle blocked cookies...