* {
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

@media (prefers-color-scheme: dark) {
    :root {
        --bg-color: #0f0f0f;
        --color: #ececec;
        --button-color: #f9f9f9;
        --button-bg-color: #333;
        --border-color: #eee;
        --menu-background: #555555f5;
        --submit-color: #24ea24;
        --reset-color: #970000;
        --form-bg: #4d4d4d;
        --active-row: #37af00;
        --scratched: #ff0000ed;
        --card-overlay: #0f0f0fd6;
    }
}

@media (prefers-color-scheme: light) {
    :root {
        --bg-color: #e8e8e8;
        --color: black;
        --button-color: #d5d5d5;
        --button-bg-color: black;
        --border-color: #6f6f6f;
        --menu-background: #cececef5;
        --submit-color: #064a06;
        --reset-color: #970000;
        --form-bg: #e8e8e8;
        --active-row: #34a600;
        --scratched: #d50000;
        --card-overlay: #e8e8e8e0;
    }
}

body {
    min-height: 100svh;
}


.site-footer {
    display: grid;
    justify-content: center;
    color: #808b96;
    padding: 0 15px 4px;
}

.site-footer p {
    margin: 4px auto;
    font-size: .8rem;
}

.site-footer p a {
    color: #808b96;
    margin: 4px auto;
    font-size: .8rem;
}

.footContent {
    text-align: center;
}

@media (min-width: 700px) {
    .site-footer {
        justify-content: space-between;
        grid-auto-flow: column;
    }
}

   * {
        font-size: 16px;
    }

    html,
    body {
        height: 100%;
    }

    body {
        margin: 0;
        height: 100svh;
        background: var(--bg-color);
        color: var(--color);
        display: grid;
        grid-template-rows: 1fr auto;
    }