body {
            margin: 0;
            background-color: white;
        }

        /* Layout */
        .container {
            display: flex;
            align-items: center;
            padding-left: 30px;
            min-height: 100vh;
        }

        /* Navigation links */
        .sidebar {
            width: 220px;
            color: #fff;
            padding: 20px;
            border-right: 2px dashed black;
            padding-right: 10px;
            margin-right: 10px;
        }


        .sidebar a {
            display: block;
            font-family: Arial, blue;
            font-size: 30px;
            text-decoration: none;
            margin-bottom: 15px;
            position: relative;
            display: block;
            margin-bottom: 15px;
        }

        .sidebar a:hover {
        color: transparent;
        }

/* Hover-Text exakt an derselben Stelle */
        .sidebar a::after {
            content: attr(data-hover);
            position: absolute;
            left: 0;
            top: 0;
            color: blue;
            opacity: 0;
            pointer-events: none;
            white-space: nowrap;
        }
/* Beim Hover sichtbar */
        .sidebar a:hover::after {
            opacity: 1;
        }

        a:link {
            color: blue
        }

        a:visited {
            color: black
        }

        /* Blogbereich */
        .content {
            flex: 1;
            padding: 30px;
            font-family: 'Times New Roman', Times, serif;
            font-size: 17px;
            line-height: 1.3;
            font-weight: bold;
            font-size: 17px;
            color: black;
            max-width: 800px;
        }

        .post {
            background-color: white;
            padding: 20px;
            margin-bottom: 20px;
            border-radius: 5px;
        }

        .post h1 {
            margin-top: 0;
            font-size: 20px;
            font-style: italic;
        }

        