/* === Reset CSS === */
/* 브라우저 기본 스타일 초기화 */

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6,
p, blockquote, pre, a, abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  background: transparent;
}

/* 리스트 불릿 제거 */
ol, ul {
  list-style: none;
}

/* 링크 기본 스타일 제거 */
a {
  text-decoration: none;
  color: inherit;
}

/* 이미지 테두리 제거 */
img {
  border: none;
  vertical-align: middle;
}

/* 기본 폰트 지정 */
body {
  line-height: 1;
  font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
  color: #333;
  background: #fff;
}

/* 테이블 기본값 초기화 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
