@import url('./reset.css');
@import url('./fonts/font.css');
@import url('./fonts/noto-sans.css');
@import url('./components/tmt-section.css');
@import url('./components/tmt-socials.css');
@import url('./components/tmt-select.css');
@import url('./components/tmt-footer.css');
@import url('./components/tmt-header.css');

@import url('./sections/section-intro.css');
@import url('./sections/section-blockchain.css');
@import url('./sections/section-ct.css');
@import url('./sections/section-ai.css');
@import url('./sections/section-dx.css');


/**
 * COLORS
 */
:root {
    --primary-color: #88ade0;
    --text-color: #ffffff;
    --bg-color: #000000;
    --white-color: #ffffff;
    --black-color: #000000;
    --gray-color: #8c8c8c;
}

html {
    background-color: var(--bg-color);
}

body {
    font-family: "Quantico", 'Noto Sans KR', sans-serif;
    font-weight: 400;
    font-style: normal;
    color: var(--text-color);
    background-color: var(--bg-color);
}