@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #f2f3fa;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

.header {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 5%;
    background: white;
    height: 70px;
    width: 100%;
    border-bottom: 4px solid rgb(135, 135, 136);
    z-index: 10;
}

.header-logo img {
    width: 200px;
}

.header-action {
    display: flex;
    gap: 30px;
    height: 100%;
    padding: 0px;
}


.btn-header {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 4px;
    color: black;
    text-decoration: none;
    font-weight: 500;
    width: 125px;
}


.btn-header::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 100%;
    background: #0033cc;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease-in-out;
}

.btn-header:hover {
    background-color: #f2f3fa;
}

.btn-header:hover::after {
    transform: scaleX(1);
}


.main-inhalt {
    margin-top: 8%;
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    box-shadow: 0px 8px 20px 10px rgba(2, 30, 115, 0.35);
    width: 90%;
    background: white;
    padding: 30px;
    transition: transform 1s ease-in-out;
    position: relative;
    overflow-wrap: break-word;
    word-break: break-word;
}

h1 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #002f5f;
    text-align: left;
}

h2 {
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 10px;
    color: #004080;
    text-align: left;

}


p {
    margin-bottom: 16px;
    font-size: 1rem;
    text-align: left;

}

a {
    color: #0066cc;
    text-decoration: none;
    text-align: left;

}

a:hover {
    text-decoration: underline;
}





@media (max-width: 768px) {
    .header {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 10px;
        width: 100%;
        height: auto;
    }

    .header-logo img {
        width: 140px;
    }

    .header-action {
        height: 100%;
        justify-content: center;
    }



    .main-inhalt {
        margin-top: 180px;
        width: 90%;
        padding: 10px;
        box-shadow: none;
        border-radius: 8px;
    }

    h1 {
        font-size: 1.5rem;
        margin-top: 20px;
    }

    h2 {
        font-size: 1.1rem;
    }

}
