/* 1. 브라우저 스타일 정리: normalize 기반 */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

/* 2. 기본 마진/패딩 제거 */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
dl,
dd,
ul,
ol,
li,
figure,
figcaption,
pre,
fieldset,
legend,
input,
textarea,
button {
  margin: 0;
  padding: 0;
}

/* 3. 리스트 스타일 제거 */
ul,
ol {
  list-style: none;
}

/* 4. 링크 초기화 */
a {
  color: inherit;
  text-decoration: none;
}

/* 5. 이미지/비디오 등 미디어 기본값 */
img,
video {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border: 0;
}

/* 6. 버튼 및 폼 요소 초기화 */
button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  appearance: none;
}

/* 7. 버튼 커서 설정 */
button {
  cursor: pointer;
}

/* 8. 테이블 기본값 정리 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 9. 화면 리듬 세팅 */
body {
  font-family: "Pretendard", "Noto Sans KR", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background-color: #fff;
  color: #000;
}
