/* custom_style.css */

/* h1 태그 스타일 */
h1 {
    font-size: 32px;
    font-weight: bold;
    color: #000000; /* 검은색 */
}

/* h2 태그 스타일 */
h2 {
    font-size: 28px;
    font-weight: bold;
    color: #000000; /* 검은색 */
}

/* h3 태그 스타일 */
h3 {
    font-size: 24px;
    font-weight: bold;
    color: #000000; /* 검은색 */
}

/* h4 태그 스타일 */
h4 {
    font-size: 20px;
    font-weight: bold;
    color: #000000; /* 검은색 */
}

h5 {
    font-size: 18px;
    font-weight: bold;
    color: #000000; /* 검은색 */
}
/* p 태그 스타일 */
p {
    font-size: 16px;
    color: #000000; /* 검은색 */
}

li {
    font-size: 16px;
    color: #000000; /* 검은색 */
}

hr {
    margin-top: 50px; /* 위쪽 공백 */
    margin-bottom: 50px; /* 아래쪽 공백 */
}