:root {
    color-scheme: light dark;
    font-family: 'Trebuchet MS', Arial, sans-serif;
    font-size: large;
}

@media(prefers-color-scheme: light) {
    :root {
        --accent:rgb(243, 243, 243);
        --container: white;
        --border: Black;
        --font: black;
        --bg: #fcfcfc;
        --fonth1: #333;
        --fonth2: #444;
    }
}

@media(prefers-color-scheme: dark) {
    :root {
        --accent: #342f3f;
        --container: #43485c;
        --border: White;
        --font: white;
        --bg: #1c1b22;
        --fonth1: #fff;
        --fonth2: #ddd;
    }
}

body {
    padding: 0;
    margin: 0 auto;
    width: auto;
    height: auto;
    background-color: var(--bg);
}

a {
    color: var(--font);
    text-decoration: none;
    font-weight: bold;
    margin: 8px;
}

a:hover {
    text-decoration: underline;
    cursor: pointer;
}

.head-button {
    font-size: xx-large;
}

.head-buttons {
    height: 100px;
    padding-top: 28px;
    margin-right: 12px;
}

.submit {
    color: black;
    display: flex;
    border: none;
    background-color: rgb(175, 174, 174);
    scale: 1.5;
    margin-left: 130%;
}

.submit:hover {
    cursor: pointer;
    background-color: rgb(151, 151, 151);
}

.Header {
    justify-content: space-between;
    display: flex;
    top: 0;
    left: 0;
    height: 100px;
    margin-top: 0;
    padding-top: 5px;
    padding-left: 10px;
    background-color: var(--accent);
}

.credits {
    display: flex;
    position: fixed;
    bottom: 0;
    right: 0;
    font-size: x-large;
    padding-right: 10px;
    padding-bottom: 10px;
    user-select: none;
    pointer-events: none;
}