* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Roboto", sans-serif;
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.container {
    display: flex;
    flex: 1;
}

.sidebar {
    width: 350px;
    background-color: #1B1B1B;
    color: white;
    padding: 20px;
    height: 100%;
    position: sticky;
    top: 0;
}

.sidebar h3 {
    margin-bottom: 10px;
    color: #dcddd086;
}

.sidebar ul {
    list-style-type: none;
}

.sidebar ul li {
    margin-bottom: 20px;
}

.sidebar ul li a {
    text-decoration: none;
    color: #cfd0c4;
    font-size: 0.9em;
}

.sidebar ul li a.active {
    color: darkseagreen;
}

.content {
    flex: 1;
    padding: 20px;
    background-color: #E4E4DE;
    overflow-y: auto;
}

.main-content {
    border: 1px solid #ccc;
    background-color: white;
    padding: 20px;
    height: calc(100vh + 800px);
    overflow-y: auto;
}

.footer {
    background-color: #1B1B1B;
    color: white;
    text-align: center;
    padding: 10px;
    position: relative;
}

.footer a {
    color: darkseagreen;
}

h1,
h2,
h3 {
    color: #333;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 0.5em;
}

h2 {
    font-size: 2em;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

h3 {
    font-size: 1.5em;
    margin-top: 1.2em;
    margin-bottom: 0.3em;
}

p {
    margin-bottom: 1em;
    margin-top: 1em;
    font-size: 20px;
    line-height: 1.5;
}

ul {
    margin: 1em 0;
    padding-left: 20px;
    font-size: 20px;
    line-height: 1.5;
}

strong {
    color: #000;
}

.code-snippet {
    max-width: 70%;
    position: relative;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
}

pre {
    position: relative;
    font-size: 20px;
    word-wrap: break-word;
    max-width: 800px;
}

code {
    background-color: #f4f4f4;
    color: #117711;
    font-family: 'Courier New', Courier, monospace;
    padding: 2px 5px;
    border-radius: 5px;
    font-size: 0.95em;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.copy-button {
    position: absolute;
    top: 2px;
    right: 10px;
    cursor: pointer;
    color: #fff;
    background: gray;
    border-radius: 0.5em;
    padding: 2px 7px;
}

.copy-button:hover {
    color: #000;
}

img {
    border: 1px solid #117711;;
}