/* 기본 여백 제거 */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 기본 글꼴 상속 */
body {
  font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  color: #222;
  background-color: #fff;
}

/* 기본 display 설정 */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* form 요소 상속 */
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

/* 링크 밑줄 제거 + 색상 상속 */
a {
  text-decoration: none;
  color: inherit;
}

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

/* table 레이아웃 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
