/* style.css */

/* 폰트 임포트 (Pretendard) */
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.min.css');

/* 전체 기본 스타일 */
body {
    font-family: 'Pretendard', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    margin: 0;
    padding: 20px;
}

/* 제목 스타일 */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #222;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

/* 링크 스타일 */
a {
    color: #0077cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* 본문 문단 스타일 */
p {
    margin-bottom: 1em;
}

/* 리스트 스타일 */
ul, ol {
    margin: 0 0 1em 1.5em;
}

/* 언어 선택 링크 */
.language-switch {
    margin-top: 40px;
}

.language-switch a {
    margin-right: 15px;
    font-weight: 600;
    color: #0077cc;
    text-decoration: none;
}

.language-switch a:hover {
    text-decoration: underline;
}