body {
    font-family: Palatino,Palatino Linotype,Palatino LT STD,Book Antiqua,Georgia,serif;
    background-color: #1d1f21; /* Dark gray for a subtle tech feel */
    color: #d1d5db; /* Light gray for text, easy on the eyes */
    padding-left: 10px;
    padding-bottom: 10px;
    font-size: 16pt;
}

#side-bar {
    display: none;
}

#toggler:checked ~ #side-bar {
    display: block;
}

#toggler {
    display:none;
}

aside { display: block; }

aside h1 {
    display: inline;
    margin-bottom: 0em;
}
svg {
    display: inline;
    margin-bottom: 0em;
}


header {
    flex-basis: 100%;
    flex-shrink: 0;

    h1 span { margin-left: 1em; font-size: 50%; font-style: italic; }

    nav { display: flex; justify-content: space-between; }

}
footer {
    display: none;
}

#navbar > ul {
    display: inline-block;
}

#navbar > ul li {
    display: inline-block;
}


body {
    width: 100vw;
}

article {
    max-width: 100vw;

}

img {
    max-width: 100vw;
}

a {
    color: #58a6ff; /* Soft blue for links in dark mode */
}

nav a:hover, header a:hover {
    color: #e06c75; /* Soft red on hover */
}


nav a, header a, aside a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease; /* Smooth transition for link hover */
}

nav a:hover, header a:hover {
    color: #e06c75; /* Soft red on hover */
}

body > nav { flex-basis: content; padding-right: 1vw; min-width: 16em; }
nav ul { display: flex; flex-direction: column; list-style-position: outside; padding-left: 0; margin-top: 0.5em;}

@media only screen and (min-width:992px) {

    svg {
        display: none;
    }

    body {
        display: flex;
        flex-wrap: wrap;

        font-size: 12pt;
    }

    #side-bar {
        display: flex;
        position: -webkit-sticky;
        position: sticky;
        top:0;
        padding-left: 0.5em;

        nav ul {
               display: flex;
               flex-direction: column;
               list-style-position: outside;
               padding-left: 0;
           }


    }


#navbar {
    display:unset;
}


img {
    max-width: 92%;
}





article { flex-basis: 60%; padding-left: 1em; padding-top: 1em; max-width: 60%; min-height: 100vh}
footer { display: block; position:sticky; flex-basis: 100%; flex-shrink: 0; bottom: 0; margin-bottom: -50px}

}




blockquote {
    margin-left: 0px;
    border-left: 10px solid #58a6ff; /* Soft blue border for blockquote */
    padding: 0.5em 10px;
    color: #d1d5db; /* Light gray text for blockquote */
}


}

