/* ========== Schriftarten einbinden ========== */
@font-face {
    font-family: 'Open Sans';
    src: url('fonts/OpenSans-Light.ttf') format('truetype');
    font-weight: 300;
}

@font-face {
    font-family: 'Open Sans';
    src: url('fonts/OpenSans-SemiBold.ttf') format('truetype');
    font-weight: 600;
}

/* ========== Basis-Stile ========== */
body {
    margin: 0;
    padding: 0 20px;
    background-color: #0033a1;
    background-image: linear-gradient(to right, #0033a1, #001482);
    color: white;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 24px;
    line-height: 1.5;
}

/* ========== Container-Stil ========== */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 40px;
}

/* ========== Logo responsive ========== */
.logo-container {
    margin-bottom: 1.5em;
}

.logo-container img {
    width: 30vw;          /* Relativ zur Bildschirmbreite */
    max-width: 300px;     /* Max. Größe auf großen Geräten */
    min-width: 100px;     /* Min. Größe auf kleinen Geräten */
    height: auto;
    display: block;
}

/* ========== Textformatierung ========== */
.container p {
    margin-bottom: 1.5em;
}

a {
    color: white;
    text-decoration: none;
}

/* ========== Grafik-Streifen unten ========== */
.grafik-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40vh;
    background-image: url('grafik.svg');
    background-repeat: no-repeat;
    background-size: cover;
}

/* ========== Responsive Schriftgrößen ========== */
@media screen and (max-width: 767px) {
    body {
        font-size: 20px;
    }
}

@media screen and (max-width: 479px) {
    body {
        font-size: 16px;
    }

    .logo-container img {
        width: 40vw; /* Optional größer auf sehr kleinen Geräten */
    }
}
