@charset "utf-8";

/* 셀렉트용 폰트 */
@import url("http://fonts.googleapis.com/earlyaccess/notosanskr.css");



/* 반응형 CSS */
@import url("pc.css");  /* PC 해상도에서만 적용되는 CSS */
@import url("tablet.css"); /* 태블릿 해상도에서만 적용되는 CSS */

/* 프리텐다드 폰트 */
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css");

/*더 잠실체 폰트*/
@import url('https://webfontworld.github.io/TheJamsil/TheJamsil.css');


*{
   font-size:16px;
   font-style:normal;
   margin:0; padding:0;
   font-family:'Pretendard',"굴림", "Gulim", Verdana, Arial, Sans-serif;
   -webkit-box-sizing: border-box;
   -moz-box-sizing: border-box;
   box-sizing: border-box;   
}


a {text-decoration:none;}

a {cursor:pointer; color:#fff;text-decoration: none; }
A:link    {text-decoration: none;}
A:active  {text-decoration: none;}
A:visited {text-decoration: none;}
A:hover   {text-decoration: none;}

button { cursor:pointer; }