/* Basic formatting for all devices and screens 
-------------------------------------------------*/

html, body {
	font: 100% Georgia, "Times New Roman", serif;
	margin: 0;
	height: 100%;
}

/* Border-size auf alle Elemente anwenden, damit man die Höhe und Breite problemlos angeben kann */
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}


.page {
	margin: 0 auto;
	width: 100%; /* = 960px */
	height: 100%;
	display: table;
}