html {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
body {
margin: 0;
font-family:
-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
background: #0f172a;
color: #e2e8f0;
min-height: 100vh;
max-width: 950px;
padding: 40px;
}
h1 {
font-size: 2.5rem;
margin-bottom: 20px;
padding-bottom: 12px;
border-bottom: 1px solid #0ea5e9;
}
p {
line-height: 1.6;
color: #cbd5f5;
}
pre {
margin: 30px 0;
padding: 20px;
background: #020617;
border: 1px solid #1e293b;
border-radius: 12px;
font-family: "Fira Code", monospace;
color: #38bdf8;
}
section {
margin-top: 40px;
padding-top: 20px;
border-top: 1px solid #1e293b;
}
blockquote {
margin: 16px 0px;
padding: 16px;
background: #1e293b;
border: 1px solid #334155;
border-radius: 12px;
}
h2 {
margin-bottom: 10px;
}
a {
display: inline-block;
margin-right: 15px;
color: #60a5fa;
text-decoration: none;
transition: opacity 0.2s;
}
a:hover {
opacity: 0.7;
}