{
const height = 500;
const svg = d3.select(DOM.svg(1024, height))
.style('max-width', '100%')
.style('height', 'auto');
svg.append('rect')
.attr('fill', '#E93223')
.attr('transform', 'translate(50, 50)')
.attr('width', 1024 - 100)
.attr('height', height - 100);
svg.append('text')
.attr('transform', 'translate(100, 315)')
.style('font-family', 'Futura')
.style('font-style', 'italic')
.style('letter-spacing', '-10px')
.style('font-size', '200px')
.attr('fill', '#ffffff')
.text('Supreme');
return svg.node();
}