

/* 폰트 */

/* font-family: 'NanumSquareLight';
font-family: 'NanumSquare';
font-family: 'NanumSquareBold';
font-family: 'NanumSquareExtraBold';
font-family: 'NanumSquareAcb';
font-family: 'NanumSquareAceb';
font-family: 'NanumSquareAcl';
font-family: 'NanumSquareAcr'; */

/* === 브라우저 기본 스타일 초기화 === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* === HTML, body 전체 설정 === */
html, body {
    font-family: 'NanumSquareAcb', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    background-color: #f8f8ff;
    color: #333;
}

/* === 링크 초기화 === */
a {
    text-decoration: none;
    color: inherit;
}

/* === 리스트 스타일 초기화 === */
ul, ol {
    list-style: none;
}

/* === 테이블 초기화 === */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* === 이미지 초기화 === */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* === 버튼 초기화 === */
button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: inherit;
}

/* === 인풋, 텍스트에어리어 초기화 === */
input, textarea {
    border: none;
    outline: none;
    font-family: inherit;
    font-size: inherit;
}
 
/* === 폼 요소 스타일 초기화 === */
fieldset {
    border: none;
}

/* === 강제 줄바꿈 및 공백 설정 초기화 === */
pre {
    white-space: pre-wrap;
    word-wrap: break-word;
}
