
html,
body {
  width: 100%;
  overflow-x: hidden;
  font-family: "NanumSquareNeo", sans-serif;
  line-height: 1.6;
  letter-spacing: -0.5px;
  color: #222;
  background-color: #fff;
}

/* 모든 요소 공통 */
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  scroll-behavior: smooth;
}

/* a 태그 */
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

/* li 태그 */
li {
  list-style: none;
}

/* img 태그 */
img {
  max-width: 100%;
  height: auto;
  display: block;
}
h1 {
  font-family: 'NanumSquareNeoExtraBold';
  letter-spacing: -0.8px;
}