* {
    font-family: 'SUSE', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.container h1{
    font-size: 72px;
}

/* Allgemeine Stile */
body {
    font-family: "SUSE", sans-serif;

    padding-top: 80px; /* Platz für die fixierte Navbar */
}

.navbar-brand img {
    margin-right: 10px;
}

/* Header und Hauptinhalte */
.jumbotron {
    background-image: url('bck.png'); /* Bild als Hintergrund */
    background-size: cover; /* Bild skaliert, um den gesamten Bereich zu füllen */
    background-position: center; /* Bild zentrieren */
    background-repeat: no-repeat;
    color: white;
    text-align: center;
    padding: 6rem 2rem; /* Mehr vertikaler Abstand für größere Höhe */
    height: 94vh; /* Setzt die Höhe des Jumbotrons auf die volle Höhe des Viewports */
}

.jumbotron h1, .jumbotron p {
    color: white;
    background-color: rgba(0, 0, 0, 0.6); /* Halbtransparenter Hintergrund für besseren Kontrast */
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}



.jumbotron h1 {
    font-size: 2.5rem;
}

.container {
    margin-top: 2rem;
}

section {
    padding: 5rem 0; /* Einheitlicher Abstand für Abschnitte */
    margin: 0 auto;

}

/* Footer */
footer {
    background-color: #343a40;
    color: white;
    padding: 1rem;
    position: relative;
    bottom: 0;
    width: 100%;
}

footer p {
    margin: 0;
}

/* Anpassungen für mobile Ansichten */
@media (max-width: 768px) {
    .jumbotron h1 {
        font-size: 1.8rem;
    }
    .navbar-brand {
        font-size: 1.2rem;
    }
}
