/** *****************************************************************************
GLOBAL CSS
글로벌 스타일시트
***************************************************************************** */

/* #region CONSTANTS & CONFIGS */
:root {
    --color-bg: #121212;
    --color-terminal-bg: #1E1E1E;
    --color-main: #E6E1E5;
    --color-sub: #777777;
    --color-accent: #BD4D6E;
}
/* #endregion */

/* #region STYLES & ASSETS */
@font-face {
    font-family: 'iAWriterMono';
    font-weight: normal;
    font-style: normal;
    src: url('../assets/fonts/iAWriterMonoS-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'iAWriterMono';
    font-weight: bold;
    font-style: normal;
    src: url('../assets/fonts/iAWriterMonoS-Bold.ttf') format('truetype');
}

body {
    margin: 0;
    font-family: 'iAWriterMono', 'Noto Sans KR', 'Noto Sans JP', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    background-color: var(--color-bg);
    color: var(--color-main);
    user-select: auto;
    pointer-events: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--color-accent);
    text-decoration: underline;
    cursor: pointer;
}

.text-bold {
    font-weight: bold;
}
/* #endregion */
