html, body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: #006eff;
    margin: 0;
    padding: 0;
}

/** Content ohne Text von oben */
.content {
    padding-top: 128px;
    color: #FFFFFF;
}

.slideview + .content {
    padding: 0px;
}

/** Content mit Text von oben */
.content-page {
    color: #FFFFFF;
    padding-top: 178px;
    padding-bottom: 50px;
    margin: 0px 100px;
}

/** Title für eine Seite */
.title {
    padding-bottom: 50px;
}

/** Text-Überschriften */
h1 {
    font-size: 24px;
    font-weight: bold;
}

h2 {
    font-size: 20px;
    font-weight: bold;
}

h3 {
    font-size: 16px;
    font-weight: bold;
}

/** Text */
.text {
    font-size: 16px;
}

.text-center {
    text-align: center;
}

.text-sides {
    gap: 20px;
}

/** Margin Bottom */
.margin-bottom-medium {
    margin-bottom: 15px;
}

.margin-bottom-large {
    margin-bottom: 30px;
}

/** Div */
.div-center {
    display: flex;
    justify-content: center;
}

/** Ul */
.ul-list-style-type {
    list-style-type: initial;
    margin-left: 20px;
}

/** Margin Top */
.margin-top-medium {
    margin-top: 15px;
}

.margin-top-large {
    margin-top: 30px;
}

/** A */
a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline solid #FFFFFF 20%;
}

/** Arbeitsfotos */
.work-images {
    width: 15%;
}

/** Mobile Ansicht */
@media screen and (max-width: 1040px) {
    /** Content mit Text von oben */
    .content-page {
        margin: 0px 20px;
    }

    /** Div */
    .div-center {
        flex-direction: column;
    }

    /** Arbeitsfotos */
    .work-images {
        width: 100%;
    }
}