body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    background: #33356B;
    color: #fff;
    font-family: 'Outfit', sans-serif;
}

::-webkit-scrollbar {
    display: none;
}

/* HEADER */

.start {
    color: #BDB281;
}

.start a {
    color: #BDB281;
    text-decoration: none;
}

.start a:hover {
    color: #fff;
}

.überschrift {
    font-size: 54px;
    font-weight: 500;
    font-family: "Abril Fatface", serif;
    font-weight: 400;
    font-style: normal;
    color: #BDB281;
    text-align: center;
    text-transform: uppercase;
    margin-top: 25px;
}

.start h2 {
    margin-top: 20px;
    margin-bottom: 0;
    font-size: 22px;
    font-weight: 300;
    text-align: center;
}

/* CONTENT */

.content {
    flex: 1;
    padding: 0 80px;
    padding-bottom: 80px;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.tagline {
    font-size: 24px;
    font-weight: 400;
    font-style: italic;
    text-align: center;
    margin-bottom: 40px;
    margin-top: 20px;
}

/* CARDS */

.card {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 24px 16px;
    margin: 0 auto 16px auto;
    max-width: 700px;
    width: 100%;
    text-decoration: none;
    color: #fff;
    transition: background 0.2s ease, transform 0.15s ease;
    box-sizing: border-box;
}

.card:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-2px);
}

.card-icon {
    font-size: 28px;
    margin-right: 20px;
    flex-shrink: 0;
}

.card-name {
    font-size: 24px;
    font-weight: 600;
    flex: 1;
}

.card-desc {
    font-size: 16px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    text-align: right;
    flex-shrink: 0;
}

/* FOOTER */

footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #33356B;
    color: #fff;
    padding: 20px;
    font-size: 14px;
    z-index: 0;
    margin-top: auto;
    margin-bottom: 0;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    color: #BDB281;
}

.links {
    text-transform: uppercase;
    color: #BDB281;
    font-weight: bolder;
}

.footer-mitte {
    font-weight: 300;
    font-size: 12px;
    opacity: 0.6;
}

.rechts {
    display: flex;
    font-weight: 300;
    color: #fff;
}

.l1 {
    float: right;
    display: flex;
    flex-direction: column;
    padding-right: 60px;
    align-items: center;
}

.rechts a {
    text-align: center;
}

.r1 {
    float: left;
    display: flex;
    flex-direction: column;
    align-items: center;
}


/* MEDIA QUERIES */

@media only screen and (max-width: 850px) {
    .content {
        padding: 0 16px;
        padding-bottom: 0;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
        justify-content: flex-start;
    }

    .tagline {
        font-size: 20px;
    }

    .card {
        flex-wrap: wrap;
        padding: 20px 24px;
        gap: 8px;
    }

    .card-name {
        font-size: 20px;
    }

    .card-desc {
        font-size: 14px;
        text-align: left;
        width: 100%;
        padding-left: 48px;
    }

    .überschrift {
        font-size: 34px;
    }
}

@media only screen and (max-width: 480px) {
    .start h2 {
        margin-top: -30px;
        font-size: 18px;
    }

    .tagline {
        font-size: 18px;
    }

    .card-name {
        font-size: 18px;
    }

    .card-desc {
        font-size: 13px;
    }

    .l1 {
        padding-right: 20px;
    }



    .rechts,
    .links {
        font-size: 12px;
    }

    footer {
        font-size: 12px;
        padding-bottom: 5px;
        padding-top: 5px !important;
    }

    .überschrift {
        font-size: 40px;
    }
}