
html, body{
	margin: 0px;
	padding: 0px;
	width: 100%;
	height: 100%;
}
body{
	background-color: #000;
	background-image: url('../img/bg.jpg');

}

.center {
	margin: auto;
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	max-width: 100%;
	max-height: 100%;
}


/* Media queries!
-------------------------------------------------------------------------------*/

/* Consider this: www.cloudfour.com/css-media-query-for-mobile-is-fools-gold/ */
@media screen and (max-device-width: 480px) {
	
		
}

@media all and (orientation: portrait) {
	
}

@media all and (orientation: landscape) {
	
}

