/* font */
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');

@import url('root.css');
@import url('reset.css');
/* 공통 glabal */
@import url('global.css');
/* 공통 page */
@import url('page.css');
/* desktop만 적용 */
@import url('desktop.css') screen and (1180px <= width);
/* tablet만 적용 */
@import url('tablet.css') screen and ( 950px <= width < 1180px);
/* desktop, tabley 적용 */
@import url('desktop_tablet.css') screen and ( 950px <= width);
/* mobile만 적용 */
@import url('mobile.css') screen and (width < 950px);
