//fontsize changer js

function large() {
    document.body.style.fontSize = "14px";
}

function middle() {
    document.body.style.fontSize = "12px";
}

function small() {
    document.body.style.fontSize = "10px";
}
