body {
    font-family: 'Roboto', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-image: url('https://149366088.v2.pressablecdn.com/wp-content/uploads/2023/06/debian-12-desktop.jpg');
    background-size: cover;
    color: #000000; /* Debian black */
    line-height: 1.6;
}
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8); /* Debian white with transparency */
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.1);
}
h1 {
    text-align: center;
    color: #D70A53; /* Debian red */
    padding: 20px 0;
}
p {
    text-align: justify;
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #000000; /* Debian black */
}
.post-nav {
    margin-bottom: 16px;
}
.post-nav a {
    color: #D70A53;
    text-decoration: none;
    font-size: 0.95em;
}
.post-nav a:hover {
    text-decoration: underline;
}
.blog-section {
    margin-top: 30px;
}
h2 {
    color: #D70A53;
    border-bottom: 2px solid #D70A53;
    padding-bottom: 8px;
    margin-bottom: 24px;
}
.post {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.post:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.post h3 {
    margin: 0 0 4px;
}
.post h3 a {
    color: #000000;
    text-decoration: none;
}
.post h3 a:hover {
    color: #D70A53;
}
.post-meta {
    font-size: 0.85em;
    color: #666;
    margin-bottom: 10px;
}
.read-more {
    color: #D70A53;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
}
.read-more:hover {
    text-decoration: underline;
}
code {
    font-family: 'Courier New', Courier, monospace;
    background-color: #f9f9f9;
    padding: 2px 5px;
    border-radius: 3px;
    color: #D70A53; /* Debian red */
    background-color: #f9f2f4; /* Light red */
}
