/* CSS Document */
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	text-decoration: none;
	list-style: none;
	outline: none;
}
html,body{height: 100%}
body{}
.container{}
.home{
/*	background-color: red;*/
	background-image: url("../img/me_lp@0,5x.jpg");
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: cover;
	background-size: cover;
	width: 100%;
	height: 100vh;
}
@media all and (max-width: 1280px) {
.home{
	background-image: url("../img/me_lp_1280x800@0,5x.jpg");
	}
}
@media all and (orientation: portrait) and (min-width: 600px) and (max-width: 900px){
.home{
	background-image: url("../img/me_lp_1280x800tall@1x.jpg");
	-webkit-background-size: 100%;
	background-size: 100%;
	background-position: 10% center;
	}
}
@media all and (orientation: portrait) and (max-width: 500px) {
.home{
	background-image: url("../img/me_lp_small_MOBILE edit@1x.jpg");
	-webkit-background-size: 100%;
	background-size: 100%;
	background-position: top center;
	}
}