@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;500&display=swap');

body {
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 300;
    padding: 1em;
    margin: auto;
    line-height: 1.5;
}

a {
    color: black;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

nav.sns>ul {
    list-style: none;
    padding: 0;
}

nav.sns>ul>li>i {
    margin-right: 0.5em;
}

@media (prefers-color-scheme: dark) {
    body {
        background-color: #1a1a1a;
        color: #eee;
    }

    a {
        color: white;
    }
}