body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: url('/BRT.png') repeat;
    background-size: 32px 32px; /* Vergrößert das 16x16 Bild */
    image-rendering: pixelated; /* Verhindert Glättung für moderne Browser */
    -ms-interpolation-mode: nearest-neighbor; /* Verhindert Glättung für ältere Internet Explorer */
}

header {
    text-align: center;
    margin-top: 20px;
}

.title-container {
    display: inline-block;
    cursor: pointer;
}

.container {
    display: flex;
    justify-content: space-between;
    margin: 20px;
}

.sidebar {
    flex: 1;
    padding: 10px;
}

.left {
    text-align: right;
}

.right {
    text-align: left;
}

.main-content {
    flex: 3;
    padding: 10px;
}

.post {
    background-color: white;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.post-meta {
    font-size: 0.9em;
    color: #555;
}

.post-title {
    margin: 10px 0;
    font-size: 1.5em;
}

.post-text {
    font-size: 1em;
    color: #333;
}

