(function() { /* Art */ const art = document.getElementById('art'); art.innerHTML = ''; const rect = document.createElementNS('http://www.w3.org/2000/svg', 'rect'); rect.setAttribute('height', '512'); rect.setAttribute('width', '512'); rect.setAttribute('fill', 'black'); art.appendChild(rect); const text = document.createElementNS('http://www.w3.org/2000/svg', 'text'); text.setAttribute('id', 'text'); text.setAttribute('x', '50%'); text.setAttribute('y', '50%'); text.setAttribute('dominant-baseline', 'middle'); text.setAttribute('text-anchor', 'middle'); text.setAttribute('fill', 'white'); text.setAttribute('font-size', '132'); text.setAttribute('style', "font-family:-apple-system, system-ui, BlinkMacSystemFont, 'Segoe UI', Roboto;"); text.textContent = svg.dataset.blk; svg.appendChild(text); })();