/* 모든 태그 공통 초기값 */
html, body, h1, h2, h3, h4, h5, h6, 
p, div, dl, dt, dd, ul, ol, li, blockquote, address, video, hr, 
header, footer, aside, form, nav, article, section, figure, figcaption, main, details, summary,
form, fieldset, legend, input, button, section, option, textarea,
a, span, em, del, img, br, code, q, sup, sub, s, strong, mark,
table, thead, tbody, tfoot, tr, th, td {
    font-size: 1em;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0;
    word-spacing: 0;
    color: #000;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "pretendard", sans-serif;
    font-style: normal;
}

/* 개별 태그 초기값 */
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, th, td {border-collapse: collapse;}
select, option, button {border: 0; background: none; appearance: none; outline: none;}


/* 크로스브라우징을 위한 인풋 태그 초기화==================================== */
/* 웹브라우저 엔진 -webkit-, -moz-, -m-, -o- */
/* 크롬 사파리 엣지 오페라 */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none; margin: 0;}
/* 파이어폭스 */
input[type=number] {
    -moz-appearance: none;
    margin: 0;
}
