/* base.css */

/* 1. 기본 박스 크기 설정 */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* 2. 전체 폰트 및 배경 기본 설정 */
html, body {
  height: 100%;
  font-family: ui-sans-serif, -apple-system, system-ui, "Segoe UI", Helvetica,
    "Apple Color Emoji", Arial, sans-serif, "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 16px;
  line-height: 1.5;
  color: #111;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* 4. 이미지 반응형 설정 */
img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* 5. 입력 요소 기본화 */
input, button, textarea, select {
  font: inherit;
  border: none;
  background: none;
  outline: none;
}

/* 6. 버튼 기본 스타일 제거 */
button {
  cursor: pointer;
  background-color: transparent;
}

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