function spotify(id, width = defaultWidth, height = defaultHeight) {
if (id.indexOf('/') < 0) id = `album/${id}`;
return html`<iframe src="https://open.spotify.com/embed/${id}" width="${width}" height="${height}" frameborder="0" allowtransparency="true" allow="encrypted-media"></iframe>`;
}