{
svg5.createSVG(width, 400)
svg5.background('black')
svg5.stroke(255)
svg5.noFill()
for(let y = -150; y <= svg5.height + 150; y += 5){
svg5.beginShape()
svg5.vertex(-10, svg5.height + 100)
for(let x = -10; x <= svg5.width + 10; x += 10){
svg5.vertex(x, y + svg5.noise(x/500, y/200) * 50)
}
svg5.vertex(width + 10, svg5.height + 100)
svg5.endShape(svg5.CLOSE)
}
return html`${svg5.getHTML()}`
}