*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

@font-face {
    font-family: 'NewElegance';
    src: url('/fonts/NewEleganceNormal.otf') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'NewEleganceItalic';
    src: url('/fonts/EleganceItalic.otf') format('woff');
    font-weight: normal;
    font-style: normal;
}


:root{
    --bg-color: #000;
    --field-bg-color: #111;
    --text-color: #fff;
    --app-background-color: #000;
    --main-color : #FFB500;
    --main-color-bg :  rgb(255 181 0 / 23%);
    --input-color : #ebebef;
    --text-grey : #8f909c;
    --app-theme-color: var(--main-color);
    --app-gre-color: var(--text-grey);
    --special-font: 'NewElegance';
    --special-font-italic: 'NewEleganceItalic';
}

body{
    margin: 0;
    padding: 0;
    width: 100%;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Satoshi', sans-serif;

}
