class AlertBox extends HTMLElement {
connectedCallback() {
this.innerHTML = `<div style="min-width: 15rem; min-height: 8rem; padding: 2rem; border-radius: 10px; color: white; width: max-content; height: max-content; background-color: darkorange;">
<h2 style="color: white; padding-bottom: 1rem;">Alert:</h2>
<p>
${this.getAttribute("data-text")}
</p>
</div>`
}
}