html, body {
    height: 100%;
    background-color: #2b2a27;
}

body {
    display: flex;
    flex-direction: column;
    color: white;
    font-family: Arial, sans-serif;
}

header {
    background-image: url("../img/back.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    height: 300px;
    border-bottom: 2px solid #222;

    display: flex;
    justify-content: center;
    align-items: center;
}

header img {
    width: 700px;   /* Größe anpassen */
    height: auto;
}

header, footer {
    text-align: center;
    padding: 20px;
}

.container {
    display: flex;
    flex: 1;
}

.left, .right {
    width: 200px;
    background: #4a4740;
    text-align: center;
    padding: 20px;
}

main {
    flex: 1;
    background: #5a564d;
    text-align: center;
    padding: 20px;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.title {
    font-weight: bold;
    font-size: 20px;
}

.content {
    margin-top: 60px;
    max-width: 800px;
    text-align: left;
}

footer {
    background: #3a3833;
}