function regularText() {
  if (document.body.style.fontSize == "") {
    document.body.style.fontSize = "0.75em";
  }
  document.body.style.fontSize = "0.75em";
}

function largeText() {
  if (document.body.style.fontSize == "") {
    document.body.style.fontSize = "0.75em";
  }
  document.body.style.fontSize = "0.75em";
  document.body.style.fontSize = parseFloat(document.body.style.fontSize) + (0.1) + "em";
}

function xlargeText() {
  if (document.body.style.fontSize == "") {
    document.body.style.fontSize = "0.75em";
  }
  document.body.style.fontSize = "0.75em";
  document.body.style.fontSize = parseFloat(document.body.style.fontSize) + (0.25) + "em";
}
