/* Noto Sans KR 및 Jua 폰트 적용: 스크린샷 2 반영 */
@import url("https://fonts.googleapis.com/css2?family=Jua&family=Noto+Sans+KR&display=swap");

:root {
  --wiki-border: #e2e2e2;
  --font-color: #333;
  --primary-color: #2ac1bc;
}

body {
  font-family: "Noto Sans KR", sans-serif;
  color: var(--font-color);
  line-height: 1.6;
}

html {
  scroll-behavior: smooth; /* smooth scroll 추가: 스크린샷 2 반영 */
}

h1, h2, h3 {
  font-family: "Jua", sans-serif;
  font-weight: 400;
}

article > p {
    line-height: 1.8;
    margin-bottom: 20px;
}