/* Cusotn font */
@font-face {
    font-family: 'Riforma LL'; /* Replace with your font's name */
    src: url("/static/font/Riforma LL/OpenType OTF/Fonts/RiformaLL-Medium.4109da53c6a3.otf") format('opentype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Riforma LL'; /* Replace with your font's name */
    src: url("/static/font/Riforma LL/OpenType OTF/Fonts/RiformaLL-MediumItalic.700d7204415b.otf") format('opentype');
    font-weight: normal;
    font-style: italic;
}
@font-face {
    font-family: 'Riforma LLTT'; /* Replace with your font's name */
    src: url("/static/font/Riforma LL/TrueType TTF/Fonts/RiformaLLTT-Medium.290937478736.ttf") format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Riforma LLTT'; /* Replace with your font's name */
    src: url("/static/font/Riforma LL/TrueType TTF/Fonts/RiformaLLTT-MediumItalic.bed42a6a037e.ttf") format('truetype');
    font-weight: normal;
    font-style: italic;
}

* {
    font-family: 'Riforma LL', sans-serif;
    font-weight: medium;
    line-height: 1.1; 
}

:root {
    --color-base: #000000;
    --color-base-dark: #2a2a2a;
    
    --color-1: #ff6300;
    --color-1-dark: #612900;
    
    --color-2: #ffd900;
    --color-2-dark: #575200;

    --color-3: #00d63d;
    --color-3-dark: #295221;

    --color-4: #00eba6;
    --color-4-dark: #003321;

    --color-5: #00b5ff;
    --color-5-dark: #003375;

    --color-6: #d991ff;
    --color-6-dark: #4a2987;

    --color-7: #ff99ab;
    --color-7-dark: #59007d;
}