@import url('https://fonts.googleapis.com/css?family=Roboto|Roboto+Condensed|Roboto+Mono');

h1{
	font: 28px 'Roboto Mono', monospace !important;
	font-weight: 700;
}
h2{
	font: 24px 'Roboto Mono', monospace !important;
	font-weight: 700;
}
h3{
	font: 20px 'Roboto Mono', monospace;
	font-weight: 700;
}

h4{
	font: 18px 'Roboto Mono', monospace;
	font-weight: 700;
}

body {
	font: 14px 'Roboto Mono', monospace;
	font-weight: 400;
	background-color:black;
	color:white;

	height:100%;
	width:100%;
	background-image:url(../img/amphi.jpg);/*your background image*/
	background-repeat:no-repeat;/*we want to have one single image not a repeated one*/
	background-size:cover;/*this sets the image to fullscreen covering the whole screen*/
	/*css hack for ie*/
	filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../img/amphi.jpg',sizingMethod='scale');
	-ms-filter:"progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../img/amphi.jpg',sizingMethod='scale')";
