@import url(/styles/chota.min.css);

:root {
    --bg-color: #40121d;
    --color-primary: #ccc0b0;
    --color-lightGrey: #ccc0b0;
    --color-grey: #B5AB9B;
    --color-darkGrey: #40121d;

    --background-primary: #40121d;
    --text-primary: #ccc0b0;

    --background-secondary: #ccc0b0;
    --text-secondary: #40121d;

    --background-tertiary: #2c3531;
    --text-tertiary: #40121d;

    --font-size: 1.6rem;
    --grid-gutter: 3rem;
}

body {
    font-family: "Times New Roman", Times, serif;
}

body > main, body > section, body > footer {
    padding: 8rem 0;
}

.tabs a {
    color: var(--color-primary);
}

.theme-primary {
    background-color: var(--background-primary);
    color: var(--text-primary);
}
.theme-secondary {
    background-color: var(--background-secondary);
    color: var(--text-secondary);
}
.theme-tertiary {
    background-color: var(--background-tertiary);
    color: var(--text-tertiary);
}
.standout {
    padding: 1rem 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.standout header > *{
    margin-bottom: 1rem;
    margin-top: 0;
}
.standout footer {
    margin-top: auto;
}

#header {
    display: flex;
    flex-direction: column;
}

#header #brand {
    padding: 4rem 8rem;
    border-style: double !important;
    border-width: 4px !important;
}
#header #brand #brand-title {
    font-size: 1.8em;
    margin-bottom: 0;
}