html,
body {
    height: 100%;
    min-height: 100vh;
}

body {
    background-color: #fff;
    color: #000;
    font-family: Verdana, Arial, Verdana, sans-serif;
    font-size: 1rem;
    margin: 1rem;
    padding: 0;
}

.content-container {
    box-shadow: 1px 1px 10px #000;
    box-sizing: border-box;
    margin: 0 auto;
    padding: 1rem;
    width: 50rem;
}

header {
    h1 {
        margin: 0;
    }

    svg {
        height: auto;
        width: 100%;
    }

    h2 {
        font-size: 2rem;
        margin: 1rem 0 2rem;
    }
}

section {
    border: 1px solid #000;
    box-shadow: 1px 1px 10px #000;
    margin-top: 1rem;
    padding: 1rem;
}

.section-heading {
    background-image: url('/images/beholder.svg');
    background-repeat: no-repeat;
    background-size: contain;
    font-size: 1.5rem;
    margin-top: .5rem;
    padding-left: 2.2rem;
}

.about-api {
    display: flex;
    gap: .5rem;
    margin: 1rem 0;
    padding: 0;

    li {
        background-color: #333;
        color: #fff;
        display: block;
        flex: 1 1 0;
        margin: 0;
        padding: .5rem;

        strong {
            display: block;
        }

        svg {
            height: 3rem;
            margin-bottom: .5rem;
            width: auto;
        }
    }

    li.about-about svg {
        filter: drop-shadow(rgb(255, 255, 255) 0 0 2px) drop-shadow(rgb(119, 0, 255) 0 0 4px) drop-shadow(rgb(119, 0, 255) 0 0 5px);
    }

    li.about-about a:hover svg {
        filter: drop-shadow(rgb(255, 255, 255) 0 0 4px) drop-shadow(rgb(119, 0, 255) 0 0 6px) drop-shadow(rgb(119, 0, 255) 0 0 7px);
    }

    li.about-getting-started svg {
        filter: drop-shadow(rgb(255, 255, 255) 0 0 2px) drop-shadow(rgb(0, 126, 38) 0 0 4px) drop-shadow(rgb(0, 126, 38) 0 0 5px);
    }

    li.about-getting-started a:hover svg {
        filter: drop-shadow(rgb(255, 255, 255) 0 0 4px) drop-shadow(rgb(0, 126, 38) 0 0 6px) drop-shadow(rgb(0, 126, 38) 0 0 7px);
    }

    li.about-documentation svg {
        filter: drop-shadow(rgb(255, 255, 255) 0 0 2px) drop-shadow(rgb(185, 70, 185) 0 0 4px) drop-shadow(rgb(185, 70, 185) 0 0 5px);
    }

    li.about-documentation a:hover svg {
        filter: drop-shadow(rgb(255, 255, 255) 0 0 4px) drop-shadow(rgb(185, 70, 185) 0 0 6px) drop-shadow(rgb(185, 70, 185) 0 0 7px);
    }

    li.about-troubleshooting svg {
        filter: drop-shadow(rgb(255, 255, 255) 0 0 2px) drop-shadow(rgb(241, 129, 0) 0 0 4px) drop-shadow(rgb(241, 129, 0) 0 0 5px);
    }

    li.about-troubleshooting a:hover svg {
        filter: drop-shadow(rgb(255, 255, 255) 0 0 4px) drop-shadow(rgb(241, 129, 0) 0 0 6px) drop-shadow(rgb(241, 129, 0) 0 0 7px);
    }

    a {
        color: #fff;
        display: block;
        fill: #fff;
        padding: .5rem;
        stroke: #fff;
        text-align: center;
        text-decoration: none;
    }
}

.section-documentation {
    details {
        margin-bottom: 1rem;

        summary {
            border: 1px solid #000;
            box-shadow: 1px 1px 10px #000;
            padding: 1rem;
        }
    }

    ul.endpoints {
        padding: 0;

        .endpoint {
            border: 1px solid #999;
            list-style: none;
            margin: 0;
            padding: 1rem;
        }

        code.post,
        code.get,
        code.patch {
            font-weight: bold;
        }
    }
}

code.block {
    background-color: #ddd;
    display: block;
    padding: .5rem;
    white-space: pre;
}

footer {
    background-color: #333;
    color: #fff;
    margin-top: 2rem;
    padding: 1rem;

    a {
        color: #fff;
    }
}
