h1 {
    text-align: center;
}

body {
    background-color: #1e1e1e;
    color: #e0e0e0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 1rem;
}

h1, h2 {
    color: #ffffff;
    line-height: 1.2;
}

a {
    color: #8cb4ff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

pre {
    background-color: #2b2b2b;
    padding: 1em;
    border-radius: 5px;
    overflow-x: auto;
    white-space: pre-wrap;
    overflow-wrap: break-word;
}

code {
    font-family: "Courier New", Courier, monospace;
    font-size: 0.85em;
}

.inline-code {
    background-color: #2b2b2b;
    padding: 0.1em 0.4em;
    border-radius: 5px;
}

.key {
    color: #7dcfff;
}

.value {
    color: #e0af68;
}

.string {
    color: #9ece6a;
}

.bool {
    color: #f7768e;
}

.comment {
    color: #808080;
}

