@font-face {
    font-family: 'FixelBold';
    src: 'assets/fonts/FixelText/FixelText-Bold.ttf';
}

:root {
    --primary-black: #000000;
    --dark-gray: #333333;
    --medium-gray: #666666;
    --light-gray: #999999;
    --lighter-gray: #CCCCCC;
    --lightest-gray: #F3F3F3;
    --white: #FFFFFF;
    --secondary-blue: #007BFF;
    --secondary-orange: #FF7F00;

    font-family: 'FixelBold', sans-serif;
}

html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

header {
    background-color: var(--primary-black);
    color: var(--white);
    padding: 0 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

main {
    background-color: var(--lightest-gray);
    padding: 0 2em;
    display: flex;
    flex-direction: column;
    height: 100%;
    flex-grow: 1;
}