body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    height: 100vh;
    background-color: greenyellow;
}

.link-bar {
    background-color: blue;
    width: px; /* Breite des linken Balkens */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
    position: fixed; /* Fixiert den Balken links */
    height: 100%;
}

.link-bar a {
    color: white;
    text-decoration: none;
    padding: 10px 0;
    margin: 10px 0;
    width: 100%; /* Links nehmen die volle Breite des Balkens ein */
    text-align: center;
    transition: background-color 0.3s;
}

.link-bar a:hover {
    background-color: darkblue;
}

.main-content {
    margin-left: 220px; /* Platz für den linken Balken */
    padding: 20px;
    flex-grow: 1;
}