body {
overflow-x: hidden;
margin: 0;
width: 50vw;
padding: 2rem 25vw;
font-family: Helvetica, Arial, sans-serif;
background-color: hsl(225, 25%, 9.4%);
color: #bcbdd0;
font-size: 1.05rem;
line-height: 1.7;
}
body::before, body::after {
content: '';
position: fixed;
top: 0;
width: 25vw;
height: 100vh;
pointer-events: none;
z-index: 999;
}
body::before {
left: 0;
background: linear-gradient(to right, hsl(225, 40%, 12%) 0%, transparent 100%);
}
body::after {
right: 0;
background: linear-gradient(to left, hsl(225, 40%, 12%) 0%, transparent 100%);
}
h1, h2, h3, h4, h5, h6 {
color: #dde0f0;
margin-top: 2rem;
margin-bottom: 0.5rem;
line-height: 1.3;
}
h1 { font-size: 2rem; border-bottom: 1px solid hsl(223, 28%, 21%); padding-bottom: 0.3rem; }
h2 { font-size: 1.5rem; }
p { margin: 0.8rem 0; }
a { color: #2b79a2; text-decoration: none; }
a:hover { text-decoration: underline; }
code {
background-color: hsl(223, 28%, 21%);
padding: 0.15em 0.4em;
border-radius: 4px;
font-size: 0.9em;
font-family: monospace;
}
pre {
background-color: hsl(223, 28%, 21%);
padding: 1rem;
border-radius: 6px;
overflow-x: auto;
border-left: 3px solid #2b79a2;
}
pre code {
background: none;
padding: 0;
font-size: 0.9rem;
}
ul, ol { padding-left: 1.5rem; }
li { margin: 0.3rem 0; }
hr {
border: none;
border-top: 1px solid hsl(223, 28%, 21%);
margin: 2rem 0;
}
strong { color: #dde0f0; }