:root {
    --font-family: 'Karrik', Arial, sans-serif;;
    --font-size: 18px;
    --line-height: 20.2px;
    --margin: 4px;
    --color-1: #515151 /*Grey*/;
    --color-2: DeepPink /*CadetBlue*/;
}

@font-face {
    font-family: 'Karrik';
    src: url('/fonts/Karrik-Italic.ttf') format('truetype'),
        url('/fonts/Karrik-Italic.woff') format('woff'),
        url('/fonts/Karrik-Italic.woff2') format('woff2');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Karrik';
    src: url('/fonts/Karrik-Regular.ttf') format('truetype'),
        url('/fonts/Karrik-Regular.woff') format('woff'),
        url('/fonts/Karrik-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size);
    font-weight: normal;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
