function resizeText(multiplier) {
  if (document.getElementById('content').style.fontSize == "") {
    document.getElementById('content').style.fontSize = "0.8em";
  }
  document.getElementById('content').style.fontSize = parseFloat(document.getElementById('content').style.fontSize) + (multiplier * 0.1) + "em";
}
function resizeText2(multiplier) {
  if (document.getElementById('contenttall').style.fontSize == "") {
    document.getElementById('contenttall').style.fontSize = "0.8em";
  }
  document.getElementById('contenttall').style.fontSize = parseFloat(document.getElementById('contenttall').style.fontSize) + (multiplier * 0.1) + "em";
}
