/* styles.css */

@import url(//fonts.googleapis.com/earlyaccess/notosanskr.css); .notosanskr * { font-family: 'Noto Sans KR', sans-serif; }
body {
    font-family: "Noto Sans KR", Sans-serif;
    line-height: 1.6;
    margin: 20px;
    background-color: #f9f9f9;
}

.content {
    padding: 20px;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 5px;
    max-width: 800px;
    margin: 0 auto;
}

/* Paragraph styling */
.content > p {
    font-weight: bold;
    margin: 10px 0;
    font-size: 18px;
}

/* Unordered list styling */
ul {
    list-style-type: none; /* Remove default bullets */
    margin: 10px 0;
    padding: 0;
}

ul > li {
    margin-left: 20px;
    position: relative;
    font-size:14px;
}

/* Nested list styling */
ul > li::before {
    content: "•"; /* Add a bullet */
    color: #555;
    position: absolute;
    left: -15px;
}

ul ul {
    margin-left: 20px;
}

ul ul > li::before {
    content: "-"; /* Add a dash for nested items */
    color: #777;
    position: absolute;
    left: -15px;
}

/* Text styling for examples */

ul .example {
    display:block ; /* Remove bullet */
    margin-left: 30px; /* Add extra indentation */
    font-style: italic; /* Optional: make it italic */
    color: #555; /* Optional: adjust color */
	font-size:13px;
}
img {
	
	margin: 10px 0px 10px 50px;	
}	
ul:nth-of-type(2),
ul:nth-of-type(2) li {
    font-size: 14px; /* 두 번째 목록의 글자 크기 */
}