link = document.querySelector('.brz-rich-text a');
linkText = link.textContent;
if (linkText === "Writing") {
link.style.backgroundColor = "#ADADAD";
} else if (linkText === "Pre Production") {
link.style.backgroundColor = "#EA8915";
} else if (linkText === "Development") {
link.style.backgroundColor = "#DB4928";
} else if (linkText === "Production") {
link.style.backgroundColor = "#29852f";
} else if (linkText === "Post Production") {
link.style.backgroundColor = "#4A71ED";
} else if (linkText === "Distribution") {
link.style.backgroundColor = "#9E61FF";
} else if (linkText === "Released") {
link.style.backgroundColor = "#F236DC";
} else if (linkText === "Fundraising") {
link.style.border = "solid 2px white";
}