/* WORDPRESS broke the website...  THANKS! 18.07.24  with this: 
there are aother CSS changes - but dont seem to affect us ...
:root :where(body) {
    background-color: var(--wp--preset--color--background);
    color: var(--wp--preset--color--foreground);
    font-family: var(--wp--preset--font-family--system);
    font-size: var(--wp--preset--font-size--medium);
    line-height: 1.75;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
}
*/
/* UNDO their evil: how DARE you wordpress ?!? */
:root {
    --wp--preset--font-family--system: var(--bs-body-font-family);
    --wp--preset--color--foreground: var(--bs-body-color);
    --wp--preset--color--background: var(--bs-body-bg); 
    --wp--preset--font-family--system: var(--bs-body-color);
    --wp--preset--font-size--medium: var(--bs-body-font-size);
}
:root :where(body) { /* my rule again (as body rule) */ 
    font-family: var(--bs-body-font-family);
    font-size: var(--bs-body-font-size);
    line-height: var(--bs-body-line-height);
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
}