body {
	background-image: url("background.png");
    background-repeat: repeat;
	font-family: Times New Roman, sans-serif;
}

@media only screen 
and (max-width : 768px) {
	body {
		font-size: calc(12px + 0.8vw);
	}
}

@media only screen 
and (min-width : 768px) {
	body {
		font-size: calc(12px + 0.8vw);
	}
}

@media only screen
and (min-width : 3000px) {
	body {
		font-size: 36px;
	}	
}