﻿@font-face {
    font-family: PrimaryFont;
    src: url('/fonts/day-roman/DAYROM__.ttf') format('truetype');
}

@font-face {
    font-family: NumericFont;
    src: url('/fonts/bookos.ttf') format('truetype');
}

a {
    color: var(--font-color);
    text-decoration: none;
    outline: none;
}

    a img {
        border: none;
        outline: none;
    }

:root {
    --font-color: #454343;
    --font-family: 'PrimaryFont', 'Day Roman', 'Times New Roman', sans-serif;
}

b {
    color: var(--font-color);
    font-family: var(--font-family);
    font-weight: 900;
    margin: 0px;
}

h1 {
    color: var(--font-color);
    font-family: var(--font-family);
    font-size: 20px;
    font-weight: 100;
    margin: 0px;
}

h2 {
    color: var(--font-color);
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 100;
    margin: 0px;
}

h3 {
    color: var(--font-color);
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 100;
    margin: 0px;
}

h4 {
    color: var(--font-color);
    font-family: var(--font-family);
    font-size: 12px;
    font-weight: 100;
    margin: 0px;
}

body {
    color: var(--font-color);
    font-family: var(--font-family);
    font-size: 20px;
    padding-bottom: 50vh;
}

