body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #2f2f2f; /* Anthrazitgrau */
    scroll-behavior: smooth; /* Smooth Scroll CSS */

}

header {
    background-image: url('Banner_header.png'); /* Füge hier den Pfad zu deinem Bild ein */
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 80vh;
}

.container {
    text-align: center;
    margin-left: 20px;
}

.logo img {
    max-width: 400px;
    height: auto;
}

.subtext {
    margin-top: 20px;
    font-size: 1.5rem;
}

.buttons {
    margin-top: 30px;
}

.buttons a {
    display: inline-block;
    text-decoration: none;
    color: beige;
    background-color: #315379;
    padding: 10px 20px;
    margin: 0 10px;
    border-radius: 8px;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.buttons a:hover {
    background-color: #ecc19c;
    color: #6b7b8c;
}