/* 모든 태그들에 대한 공통 초기값 세팅 */
html,body,h1,h2,h3,h4,h5,h6,
dl,dt,dd,ul,ol,li,div,p,video,blockquote,hr,address,
header,footer,nav,aside,article,section,figure,figcaption,main,details,summary,
form,fieldset,legend,input,button,select,option,textarea,
em,strong,sub,sup,br,span,del,s,q,mark,code,img,a,
table,thead,tbody,tfoot,tr,th,td {
    margin:0; padding:0;
    box-sizing: border-box;/* css의 계산법을 변경하는 방법 */
    line-height:1; letter-spacing:-0.02em; word-spacing:0;
    font-size:1em; font-weight:400; font-style:normal;
    color:#000;
    font-family:'pretendard',sans-serif;
}
/* 개별 태그 초기값 */
a {text-decoration:none;}/* a 태그 밑줄 제거 */
ul,ol,li {list-style:none;}/* 앞에 생기는 점이나 숫자 제거 */
fieldset {border:0;}/* 테두리 제거 */
legend {display:none;}/* 제목 제거 */
input {border:0; outline:none;}/* 테두리 제거, 두꺼운 테두리 제거 */
button {border:0; background:none; cursor:pointer;}/* 테두리 제거, 배경 없음, 클릭 커서 다르게 보이기 */
table,tr,th,td {border-collapse:collapse;}
select, option {border:0; appearance:none;}/* border 선 없음 | appearance 기본 모양 제거 */