@charset "utf-8";

/* 프로젝트 종료후 삭제 파일을 삭제
body:after {
	content: '';
	position: fixed;
	bottom: 0;
	right: 0;
	border: 1px solid #959595;
	padding: 0 0.5em;
	background: rgba(0, 0, 0, 0.36); 
	color: #fff;
	font-size: 2em;
	line-height: 1.5;
	text-shadow: 0 1px 2px #111;
	text-align: center;
	z-index: 99999;
}



@media only screen and (min-width: 240px) and (max-width: 480px){
	body:after {
		content: 'mobile';
	}
}
@media only screen and (min-width: 481px) and (max-width: 768px){
	body:after {
		content: 'tablet';
	}
}
@media only screen and (min-width: 769px) and (max-width: 1044px){
	body:after {
		content: '1024';
	}
}
@media only screen and (min-width: 1045px){
	body:after {
		content: '1280 less';
	}
}*/