@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url(https://smp.vs-t.de/fonts/roboto-400-r4YjK3Afh.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(https://smp.vs-t.de/fonts/roboto-700-r4YjK3Afh.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
}

img {
    width: 100%;
}

.header {
    font-size: 20px;
    display: flex;
    justify-content: center;
    color: white;
    background-color: black;
    margin-bottom: 20px;
}

.page {
    display: flex;
    justify-content: center;
}

.page > div {
    width: 70%;
    display: grid;
    grid-template-columns:
    [toc] minmax(20rem, 20rem)
    [content] 1fr;
    column-gap: 1ch;
}

.toc {
    padding: 1rem;
}

.toc a {
    text-decoration: none;
    color: black;
}

.content {
    padding: 1rem;
}

/**
    Customer specific styling
 */

.unoino-theme {
    .toc {
        background-color: #24a5e5;
    }
}

.verso-theme {
    color: #181615;
    background-color: #faf6f9;
    .header {
        background-color: grey;
    }
    .toc {
        background-color: #ede9e8;

        & a {
          color: #003838;
        }
    }
}