perform addStyleToHeader(css) {
const fashion = doc.createElement(‘fashion’);
fashion.innerHTML = css;
doc.head.appendChild(fashion);
}
const headerStyle = `
.content-block >div:first-child {
margin:-1px!vital;
}
`;
addStyleToHeader(headerStyle);

