/* ---- General ---- */
.container {
    max-width: 800px;
}

.docs-header {
    text-transform: uppercase;
    letter-spacing: .2rem;
    font-weight: 600;
}

.docs-section {
    border-top: 1px solid var(--border-color-softer);
    padding: 4rem 0;
    margin-bottom: 0;
}

/* ---- Header ---- */
.header {
    margin-top: 18rem;
    text-align: center;
}

.value-prop {
    margin-top: 1rem;
}

.value-props {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

i.fas,
i.fab {
    font-size: 5rem;
    display: block;
    margin: 0 auto 2rem;
}

/* grids to 3 columns above mobile sizes */
@media (min-width: 600px) {
    .header {
        margin-top: 18rem;
    }

    .value-header {
        grid-column: 1 / span 3;
        margin-top: 2rem;
    }

    .value-props {
        margin-top: 9rem;
        margin-bottom: 7rem;
    }

    .value-img {
        margin-bottom: 1rem;
    }
}

/* ---- Code ---- */
pre.code-example {
    margin-top: 0;
    margin-bottom: 0;
    line-height: normal;
}

i.copy-cmd:hover {
    transform: scale(1.2);
}