.site-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.site-title {
    font-size: 48px;
    font-weight: 900;
    text-decoration: none;
    color: #ccc;
}
.navbar {
    display: flex;
    justify-content: center; /* Centers the links horizontally */
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 20px; /* Space between links */
}

.navbar a {
    text-decoration: none;
    color: #ccc;
    padding: 10px;
}

body {
    background-color: #121212; /* Dark background */
    color: #ffffff;            /* White text */
    font-family: Arial, sans-serif;
    margin: 0;
}

nav {
    background-color: #1e1e1e;
    padding: 15px;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 15px;
}

nav a:hover {
    color: #66ccff;
}

a {
  color: white;          /* Makes all links white */
}

a:hover {
  color: #66ccff;        /* Light blue when hovered */
}

a:visited {
  color: #cccccc;        /* Color after the link has been visited */
}

.content {
    max-width: 900px;   /* Maximum width of the content */
    margin: 0 auto;     /* Center horizontally */
    padding: 0 20px;    /* Space from the screen edges on small devices */
}

.content img {
    max-width: 50%;
    height: auto;
    display: block;
    margin: 1rem auto;
}

.content p {
    text-indent: 2em;
    margin-bottom: 1rem;
    text-align: justify;
}

/*#header {
    padding: 0.7ex 0.7ex 0.7ex 0.7em;
}*/
#header {
    display: flex;
    align-items: center;
    gap: 12px;      /* space between logo and title */
    padding: 16px 20px;
    
}
.site-footer {
    font-size: 0.75rem;
    color: #666;
    background: #111;
    padding: 15px;
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    padding-top: 5px;
    font-size: 0.85rem;
    border-top: 1px solid #444;
}

.post-navigation a {
    color: #999;
    text-decoration: none;
    max-width: 45%;
}

.post-navigation a:hover {
    color: #fff;
}
