/* Global styles */
body {
    font-family: 'Consolas', sans-serif;
    line-height: 1.5;
    margin: 0;
    padding: 20px;
    background-color: #f0f0f0;
}

h1 {
    font-size: 40px;
    text-align: center;
}

h2 {
    font-size: 25px;
    margin-top: 30px;
    margin-bottom: 10px;
}

ul {
    list-style-type: disc;
    margin-left: 15px;
    font-size: 15px;
}

li {
    margin-bottom: 10px;
}

footer {
    margin-top: 50px;
    text-align: center;
    color: #888;
}

/* Code-like styles */
code {
    font-family: Consolas, Monaco, 'Courier New', Courier, monospace;
    background-color: #f7f7f7;
    padding: 2px 4px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

pre {
    font-family: Consolas, Monaco, 'Courier New', Courier, monospace;
    background-color: #f7f7f7;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    overflow: auto;
}

.indented {
    margin-left: 10px;
    list-style-type: circle;
}

/* Custom IDE-like styling */
body {
    background-color: #1e1e1e;
    color: #f0f0f0;
}

h1,
h2 {
    color: #61afef;
}

ul {
    color: #abb2bf;
}

li {
    color: #abb2bf;
}

footer {
    color: #888;
}

/* Responsive styles */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 20px;
        margin-top: 20px;
        margin-bottom: 10px;
    }
}

/* JSON code styling */
code.JSON {
    color: #ce9178;
}

code {
    color: navy;
}