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

/* Basics */
body {
font-family: Lexend, sans-serif;
background: #000000;
color: #ffffff;
font-size:13px;
display: flex;
min-height: 100vh;
letter-spacing:1px;}

textarea {background:#222;color:#FF4574;letter-spacing:1px;font-size:10px;}

/* Links */
a:link,a:visited,a:active { color: #888; text-decoration: none; }
a:hover { color: #444; }

/* Scrollbar */
::-webkit-scrollbar-thumb {
background-color: #000;
border:1px solid #eee;
border-radius: 3px;}

::-webkit-scrollbar {
width: 7px;
height: 0px;
background: transparent; }

/* sidebar */
.sidebar {
position: sticky;
top: 0;
height: 100vh;
width: 150px;
background: #111;
padding: 20px;
display: flex;
flex-direction: column;
align-items: center;
flex-shrink: 0;}

.sidebar h2 {
font-family: 'Lexend', sans-serif;
font-size: 16px;
color: white;
margin-bottom: 10px;
text-shadow: 2px 2px 4px black;}

.sidebar a {
color: white;
text-decoration: none;
margin: 10px 0;
transition: color 0.3s;}

.sidebar a:hover {
color: #FF45D1;}

/* main content */
.content {
flex: 1;
padding: 50px 20px 20px 50px;
background: #000000;
overflow-y: auto; /* Makes content scrollable if it overflows */
height: 100vh; /* Takes full viewport height */
}

li {
    list-style-type: circle;
    padding-left: 20px;
    color: White;
}

.site-name {
font-family: 'lexend', sans-serif;
font-size: 22px;
color: #ffffff;
margin-bottom: 10px;
text-shadow: 3px 3px 6px black;
text-align:center;}

.slogan {text-align:center;font-style:italic;color:#999;}

.post {
background: #000000;
border: 2px solid #FF45D1;
border-radius: 10px;
padding: 20px;
margin-bottom: 20px;
box-shadow: 0 0 10px #FF45D1;
max-width: 625px;
width: 100%;}


.post ol {
    margin-left: 30px; /* Indent the list */
    margin-top: 10px;
    margin-bottom: 15px;
}

.post ol li {
    color: #ffffff; /* White text */
    margin-bottom: 4px; /* Space between list items */
    line-height: 1.5;
}

.post h3 {
font-family: 'lexend', sans-serif;
margin-bottom: 10px;
color: #FF45D1;
letter-spacing:4px;}

/* Responsive layout */
@media (max-width: 768px) {
body {
flex-direction: column;}

.sidebar {
position: fixed;
height: auto;
width: 100%;
flex-direction: row;
justify-content: center;
flex-wrap: wrap;}


.sidebar h2 {
width: 100%;
text-align: center;
margin-bottom:5px;}

.content {
padding: 15px;
padding-top:50px;
height: auto; /* Let it flow naturally on mobile */
overflow-y: visible;
}

.site-name {
font-size: 22px;
text-align: center;}
}
