/* css styles */
@import url('https://hangeul.pstatic.net/hangeul_static/css/nanum-square.css');

body {
    font-family: 'NanumSquare', 'NanumSquareLight', 'NanumSquareBold', 'NanumSquareExtraBold', 'NanumSquareAcb', 'NanumSquareAcl', 'NanumSquareAceb', 'NanumSquareAcr', sans-serif;
}

:root {
    --primary-color: #050C9C;
    /* 주색상 */
    --secondary-color: #3572EF;
    /* 보조색상 */
    --background-color: #ffffff;
    /* 배경색상 */
    --text-color: #010020;
    /* 텍스트 색상 */
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: 'NanumSquare', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--primary-color);
}

a {
    color: var(--secondary-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}