/*
    This file defines the default layout
    and style of the website.
*/

/* Colors */
body {
    background-color: white;

    @media (prefers-color-scheme: dark) {
        background-color: #202020;
    }
}

div {
    background-color: whitesmoke;

    @media (prefers-color-scheme: dark) {
        background-color: #303030;
    }
}

* {
    color: black;

    @media (prefers-color-scheme: dark) {
        color: white;
    }
}

a {
    color: rgb(0, 140, 255);
}

/* Layout */
* {
    /* Reasonably prevent overflow of an element. */
    box-sizing: border-box;

    /* Prevent browser from messing with padding/margin. */
    margin: 0;
    padding: 0;
}

body {
    /* Centered Layout */
    max-width: 850px;
    width: 100%;

    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

div {
    display: flex;
    flex-direction: column;

    width: 100%;
    margin-top: 1rem;
    padding: 1rem;
}