
body {
    margin: 0;
    padding: 0;
    font-family: 'Outfit', sans-serif;
    background-color: #ffffff;
    color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100vh;
    flex-direction: column;
}

.container {
    max-width: 800px;
    padding: 20px;
}

.logo {
    width: 550px;
    margin-bottom: 30px;
}

h1 {
    font-weight: 600;
    font-size: 2.5em;
    color: #000000;
}

.info {
    font-weight: 300;
    font-size: 1.2em;
    color: #868686;
    margin-bottom: 20px;
}

.slogan {
    font-weight: 600;
    font-size: 1.5em;
    color: #000000;
}

.highlight {
    color: #f39100;
}

.icons {
    margin: 30px 0 10px;
    width: 100%;
    max-width: 600px;
}

.services {
    font-weight: 300;
    color: #868686;
    font-size: 1.1em;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        font-size: 16px;
        padding: 1em;
    }

    header, footer, main, section, article {
        padding: 1em;
        margin: 0 auto;
        width: 100%;
        box-sizing: border-box;
    }

    img {
        max-width: 100%;
        height: auto;
    }
}


/* Footer fixieren, wenn wenig Inhalt vorhanden ist */
html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}


/* Sticky Footer Layout */
html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

#site-footer {
    margin-top: auto;
    width: 100%;
    text-align: center;
    padding: 1em;
    background-color: #f2f2f2;
}
