/* reset.css */

/* 기본 box-sizing 설정 */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* 텍스트 요소 초기화 */
body {
  margin: 0;
  padding: 0;
  font-family: inherit;
  font-size: 100%;
  line-height: 1.5;
  background: #fff;
  color: inherit;
}

/* 제목 태그 초기화 */
h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
  margin: 0;
  padding: 0;
}

/* 리스트 초기화 */
ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

/* 링크 초기화 */
a {
  text-decoration: none;
  color: inherit;
}

/* 버튼 초기화 */
button {
  all: unset;
  cursor: pointer;
}

/* 폼 요소 초기화 */
input,
textarea,
select,
button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  appearance: none;
}

input[type="checkbox"],
input[type="radio"] {
  appearance: none;
  width: 1rem;
  height: 1rem;
  border: 1px solid #ccc;
  border-radius: 2px;
}

/* 이미지, 비디오 등 미디어 초기화 */
img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* 테이블 초기화 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
