Javascript de tamanho de fonte de estilo
document.getElementById("your element").style.fontSize = "20%"
I_Like_Cats__
document.getElementById("your element").style.fontSize = "20%"
document.getElementById("foo").style.fontSize = "18"
document.getElementById("demo").style.fontSize = "14px";
const element = document.querySelector("#id");
const size = window.getComputedStyle(element).getPropertyValue("font-size");