/* Reset 기본 스타일 */

/* 모든 요소의 margin, padding을 0으로 설정 */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* a 태그 기본 스타일 초기화 */
a {
  text-decoration: none;
  color: inherit;
}

/* 목록 스타일 초기화 */
ul, ol, dl {
  list-style: none;
}

/* 테이블 기본 스타일 초기화 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 이미지 기본 스타일 초기화 */
img {
  max-width: 100%;
  height: auto;
}

/* 형제 요소 간의 간격이 있는 경우, 기본 스타일 초기화 */
hr {
  border: none;
  height: 1px;
  background-color: #ccc;
}

/* form 요소 기본 스타일 초기화 */
input, textarea, select, button {
  font-family: inherit;
  font-size: inherit;
  border: none;
  background: none;
  outline: none;
}

button {
  cursor: pointer;
}