/*
UofSC theme for Xaringan presentations
Author: Sanghoon Park based on Wisconsin theme of Tuo Wang
Updated: 1/9/2022
*/
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;700&display=swap');

@font-face {
    font-family: 'Gmarket Sans';
    src: url('GmarketSansTTFLight.ttf') format('truetype'); /* Adjust the path */
    font-weight: 300;
}

@font-face {
    font-family: 'Gmarket Sans';
    src: url('GmarketSansTTFMedium.ttf') format('truetype');
    font-weight: 500; 
}

@font-face {
    font-family: 'Gmarket Sans';
    src: url('GmarketSansTTFBold.ttf') format('truetype'); 
    font-weight: bold;
}


/* Apply Gmarket Sans to Korean text */
body:lang(ko), 
h1:lang(ko), 
h2:lang(ko), 
h3:lang(ko),
.remark-code:lang(ko),
.remark-inline-code:lang(ko) {
    font-family: 'Gmarket Sans', sans-serif;
}

/* Apply Roboto Condensed to English text */
body:lang(en),
h1:lang(en),
h2:lang(en),
h3:lang(en),
.remark-code:lang(en),
.remark-inline-code:lang(en) {
    font-family: 'Roboto Condensed', sans-serif;
}

/* Default Fallback (if no language is specified) */
body, /* Fallback for elements without lang attribute */
h1, h2, h3 {
    font-family: 'Gmarket Sans', sans-serif; /* Use Roboto Condensed as the default */
}

.remark-code-line-highlighted { background-color: #ffff88; } 