const h2 = document.querySelectorAll('h2');
for (let element of h2) {
element.style.backgroundColor = "pink";
element.style.border = "none";
element.style.filter = "drop-shadow(0 0 0.75rem crimson)";
}

const ul = document.querySelectorAll('ul,li');
for (let element of ul) {
element.style.color = "hotpink";
}

const text = document.querySelectorAll('p');
for (let element of text) {
element.style.backgroundColor = "darkpink";
element.style.color = "hotpink";
}

const links = document.querySelectorAll('a,span');
for (let element of links) {
element.style.backgroundColor = "lightpink";
element.style.color = "transparent";
element.style.filter = "drop-shadow(0 0 0.75rem crimson)";
}

const img = document.querySelectorAll('img');
for (let element of img) {
element.style.backgroundColor = "lightpink";
element.src = "https://cdn.glitch.com/c5e3adc1-0e0d-40f5-9c65-1755f2bfae9b%2F0ebf2d51966d4b872c2d700167267143.gif?v=1630423887701";
element.srcset = "https://cdn.glitch.com/c5e3adc1-0e0d-40f5-9c65-1755f2bfae9b%2F0ebf2d51966d4b872c2d700167267143.gif?v=1630423887701";
}

const caption = document.querySelectorAll('.thumbcaption');
for (let element of caption) {
element.style.backgroundColor = "#a94064";
}

const box = document.querySelectorAll('.mp-bordered,#cnotice-main');
for (let element of box) {
element.style.backgroundColor = "#F5DADF";
element.style.border = "none";
}

const background = document.querySelectorAll('#mw-head, #mw-panel, #content.mw-body');
for (let element of background) {
element.style.backgroundColor = "#a94064";
}