:root {
    --foreground: #ccc;
    --accent: #c5a;
    --background: #111;
    --background-second: #222;
    --border: #333;

    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-title: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    color: var(--foreground);
    background-color: var(--background);
}

main {
    margin: 0 20%;
    display: flex;
    flex-direction: column;
}