@charset "UTF-8";
* { margin: 0px; padding: 0px; }
ul,ol { list-style: none; }
a { text-decoration: none; }
html{
    height: 100%; 
    /*font 속성 리셋*/
    font-family:'Noto Sans KR', sans-serif , 'Roboto', sans-serif;
    /*기본 글꼴 사이즈: 16px-> 1rem*/
    font-size: 16px;
    font-weight: normal;
    line-height: 1.5;
    /*글꼴 크기 조정 방지*/
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* 웹킷 마음대로 눌림 하이라이트 막음 */
    -webkit-tap-highlight-color: transparent;
}
body{ background-color: #fff; height: 100%; }
/* 기본 셋업 */
header,section,article,aside,footer,main,a,button,input,textarea,img,nav,ul,ol,li,p,h1,h2,h3,h4,h5,h6,div,span{
margin: 0;
padding: 0;
/* 폰트 크기 상속 */
font-size: inherit;
}
input { vertical-align: middle; }
a:active, a:hover {
    outline: none;
}
a { text-decoration: none; cursor: pointer; }
a:hover { text-decoration: underline; }

abbr[title] {
    text-decoration: underline dotted;
    /* Safari에서는 '밑줄 점선'이 지원되지 않음. */
    -webkit-text-decoration-style: dotted;
    }
b,strong { font-weight: bolder; }
p { margin-top: 0; margin-bottom: 0; }



@media screen and (min-width:960px) {

    html,
    body {
        text-rendering: optimizeLegibility;
    }
}
    