Import the Stylesheets

Add to the constructor of each component a CSS loader, as in

async function loadCSS() {
    const request = await fetch("/components/[name].css");
    styles.textContent = await request.text();
}
loadCSS();