

@font-face {
    font-family: 'main1'; 
    src: url('resources/fonts/main/fontn1.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'main2'; 
    src: url('resources/fonts/main/fontn2.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


:root {
    --bg-color: #efefef;
    --primary-color: #121212;


    
    cursor: url('resources/cursor/GLT_Yuuri_WB/Normal.cur') 0 0, auto; /* Default */
    margin: 0;
    padding: 0;
    overflow: hidden;   
}
body {

    height: 100vh;
    margin: 0;
    font-family: 'main1', sans-serif;
    font-size: 30px;
    background-color: var(--bg-color);
    color: var(--primary-color);
}



body.dark {
    --bg-color: #121212;
    --primary-color: #efefef;

}


.icons {
    width: 100px;
    height: 40px;
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
}


