html {
    --bg-primary: #3c2556;
    --bg-secondary: #333333;
    --bg-system: black;

    --fg-primary: white;
    --fg-secondary: #cccccc;
    --fg-highlight: #ffde24;

    background-color: var(--bg-system);
    color: var(--fg-secondary);
    font-family: sans-serif;

    height: 100%;
}

body {
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;

    height: 100%;
    margin-top: 0;

    font-size: 32px;
}

.navbar {
    width: 100%;
    height: 112px;

    background-color: var(--bg-primary);

    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar h1 {
    color: var(--fg-primary);
    font-size: 48px;
    line-height: 48px;

    text-align: center;
}

main {
    padding-top: 32px;
    padding-left: 32px;
    padding-right: 32px;

    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: stretch;
}

p {
    margin-top: 32px;
    margin-bottom: 0;
}

ul {
    margin-top: 0;
    margin-bottom: 0;
}
