/* 모든 태그들에 대한 공통 초기값 세팅 */
html,body,h1,h2,h3,h4,h5,h6,
div,p,dl,dt,dd,ol,ul,li,blockquote,hr,video,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,td,th {
    margin:0; padding:0; box-sizing:border-box;/* 내가 정한 값 안에서 여백 주겠다! */
    line-height:1; letter-spacing:0em; word-spacing:0;
    font-size:1em; font-weight:400; font-style:normal;
    color:#000;
    font-family:'Noto Sans KR',sans-serif;
}
/* 개별 태그 초기값 */
h1,p {font-family:'Niconne',serif;}
a {text-decoration:none;}
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,td,th {border-collapse:collapse;} /* 이중선을 없애겠다. */
select, option {border:0; appearance:none; outline:none;} /* 버튼의 선, 화살표 없애겠다. */
/* chrome, safari, edge, opera */
/* 웹브라우저 엔진 -webkit-, -moz-, -m-, -o- */
input[type=number]::-webkit-outer-spin-button, /* ::-webkit- 이 브라우저에서 동작되게 만든다. */
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance:none;
    margin:0;
} 
/* firefox */
input[type=number] {
    -moz-appearance:none;
    margin:0;
}