:root {
    --background-rgb: 255, 255, 255;
    --font-color: 0, 0, 0;
    --a-color: 0, 119, 255;
}

@media (prefers-color-scheme: dark) {
    :root {
        --background-rgb: 0, 0, 0;
        --font-color: 255, 255, 255;
        --a-color: 255, 255, 255;
    }
}

html {
    width: 100%;
    height: 100%;
}

body {
    text-align: center;
    font-family: 'Charis', Helvetica, san-serif;
    width: 100%;
    height: 100%;
    margin: 0;
    display: grid;
    place-items: center;
    color: rgb(var(--font-color));
    background-color: rgb(var(--background-rgb));

}

.container {
    width: 300px;
    margin-top: -100px;
    text-align: center;
}

h1 {
    font-size: 1.7em;
    font-weight: normal;
    padding: 0;
    margin: 0;
}

p {
    padding: 5px;
    margin: 0;
    font-size: 1em;
}

a {
    text-decoration: none;
    color: rgb(var(--font-color));
    font-size: 1em;
    font-style: italic;
}

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

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

a:hover {
    text-decoration: none;
    color: rgb(0, 119, 255);
    font-style: normal;
}
