body {
    min-height: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    font-family: Tahoma, serif;
    font-size: 18px;
    color: #2E2E2E;
    background-color: black; /* Fallback-Hintergrundfarbe */
    background-image: url('image01.jpg');
    background-size: auto; /*cover; */
    background-repeat: repeat; /* Wiederholt das Hintergrundbild horizontal und vertikal */
    background-position: 0 0;
}


.container {
    height: 130vh; /*100vh;*/
}


.white-bar {
    background-color: white;
    max-width: 350px;
    position: relative;
    top: 20px;
    left: 180px;
    bottom: -1000px;
    padding: 20px;
}


.white-bar h1 {
    font-size: 55px;
    margin-top: 0;
}

.white-bar hr {
    border: 0;
    border-top: 2px solid #2D4E6B;
    margin: 20px 0;
}

.white-bar p {
    margin: 0;
}

@media screen and (max-width: 550px) {
    .white-bar {
        max-width: calc(100% - 120px);
        left: 50px;
    }
}