/*
* Lit v0.1
* Primary Color set to: #ff3232ff
* Font set to: RedHatText
*/

:root {
    --font: 'RedHatText';
    --font-headings: 'RedHatDisplay';
    --primary-color: #ff3232ff;
    --light: #eee;
    --border: 5px;
}

* {
    box-sizing: border-box;
}

*+* {
    margin: .5em 0;
}

pre {
    overflow: auto
}

@media(min-width:35em) {
    .col {
        display: table-cell;
    }

    .\31 {
        width: 5%;
    }

    .\33 {
        width: 22%;
    }

    .\34 {
        width: 30%;
    }

    .\35 {
        width: 40%;
    }

    .\32 {
        width: 15%;
    }

    .\36 {
        width: 50%;
    }

    .row {
        display: table;
        border-spacing: 1em 0;
    }
}

.w-100,
.row {
    width: 100%;
}

.card:focus,
hr {
    outline: 0;
    border: solid var(--primary-color);
}

.card,
pre {
    padding: 1em;
    border: solid var(--light);
    border-radius: var(--border);
}

a:hover,
.btn:hover {
    opacity: .6;
}

.c {
    max-width: 60em;
    padding: 1.5em;
    margin: auto;
    font: 1em var(--font);
}

h6 {
    font: bold 1em var(--font-headings);
}

h5 {
    font: bold 1.2em var(--font-headings);
}

h3 {
    font: bold 2em var(--font-headings);
}

h4 {
    font: bold 1.5em var(--font-headings);
}

h2 {
    font: bold 2.2em var(--font-headings);
}

h1 {
    font: bold 2.5em var(--font-headings);
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

.btn.primary {
    color: white;
    background: var(--primary-color);
    border: solid var(--primary-color);
}

td,
th {
    padding: 1em;
    text-align: left;
    border-bottom: solid var(--light);
}

.btn {
    padding: 1em;
    text-transform: uppercase;
    background: white;
    border: solid;
    border-radius: var(--border);
    font: .7em var(--font);
}
