var c = document.getElementById("content");
var min = "0.8";
var max = "1.2";
function resizeText(multiplier) {
	
	// var fontSize = parseFloat(document.body.style.fontSize);
	
	if (document.body.style.fontSize == "") {
	 document.body.style.fontSize = "1em";
	}
	
	if ((parseFloat(document.body.style.fontSize) < max && multiplier > 0) || (parseFloat(document.body.style.fontSize) > min && multiplier < 0)) 	 {
		console.log(parseFloat(document.body.style.fontSize));
		document.body.style.fontSize = parseFloat(document.body.style.fontSize) + (multiplier * 0.05) + "em";
	}
	
	
}




