displayCaution = function (text = "Caution: Work in Progress!") {
const styles = `
background-color:#fcbf5185;
padding: 20px;
border-radius:5px;
text-align:center;
`;
const caution = html`<div style="${styles}">
${text}
</div>`;
return html`${caution}`;
}