/* 기본 리셋 CSS */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #fff;
}

/* 링크 스타일 초기화 */
a {
  text-decoration: none;
  color: inherit;
}

/* 리스트 스타일 초기화 */
ul,
ol {
  list-style: none;
}

/* 테이블 스타일 초기화 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 기본 폼 요소 스타일 초기화 */
input,
button,
textarea,
select {
  appearance: none;
  border: none;
  background: none;
  outline: none;
  padding: 0;
  margin: 0;
}

/* 이미지 스타일 초기화 */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* 기본 폰트 크기 설정 */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  margin: 0;
}

p {
  margin: 0;
}

/* HTML5 요소들에 기본 스타일 적용 */
header,
footer,
section,
article,
aside,
nav,
figure,
figcaption {
  display: block;
}
