:root {
    --footer-height: 40px;
    --navigation-height: 40px;
    --max-content-width: 1170px;
    --main-color: rgb(200,100,0);
    --second-color: rgb(150, 150, 150);
    --second-color-light: lightgray;
    --main-text-color: white;
    --main-text-color-hover-background: orange;
    --header-image-height: 50vh;
}

* {
    box-sizing: border-box;
    font-family: 'Courier New', Courier, monospace;
    overflow: auto;
    margin: 0;
    font-size: 18px;
    color: var(--main-text-color);
}

.headerBackground {
    height: var(--header-image-height);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.header {
    background: rgb(0, 0, 0);
    background: rgba(0, 0, 0, 0.5);
    text-align: center;
    position: absolute;
    width: 100%;
    padding-top: 30px;
    padding-bottom: 30px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.navigationBackground {
    height: var(--navigation-height);
    background-color: var(--main-color);
    overflow: hidden;
}

.navigation {
    max-width: var(--max-content-width);
    margin-right: auto;
    margin-left: auto;
}

.navigation a {
    line-height: var(--navigation-height);
    float: left;
    display: block;
    text-decoration: none;
    font-size: 20px;
    padding-left: 8px;
    padding-right: 8px;
}

.navigation .menuIcon {
    display: none;
}

.navigation a:hover {
    background-color: var(--main-text-color-hover-background);
}

.grayBackground {
    background-color: var(--second-color-light);
}

.siteContent {
    max-width: var(--max-content-width);
    margin-right: auto;
    margin-left: auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.siteContentCompany {
    max-width: var(--max-content-width);
    margin-right: auto;
    margin-left: auto;
    padding: 0px 10px 10px 10px;
}

.siteContent img {
    width: 100%;
    border-radius: 10px 10px 10px 10px;
}

.line {
    background-color: var(--main-color);
    color: var(--main-color);
    min-height: calc(100vh - var(--header-image-height) - var(--footer-height) - var(--navigation-height));
    -ms-flex: 0.5%;
    flex: 0.5%;
}

.siteContentBig {
    padding: 0px 10px 10px 0px;
    -ms-flex: 65%;
    flex: 65%;
}

.siteContentSmall {
    padding: 0px 0px 10px 10px;
    -ms-flex: 34.5%;
    flex: 34.5%;
}

.box {
    width: 100%;
    padding-top: 10px;
}

.boxTitle {
    background: var(--main-color);
    border-radius: 10px 10px 0px 0px;
    padding: 10px;
}

.boxContent {
    background: var(--second-color);
    border-radius: 0px 0px 10px 10px;
    padding: 10px;
}

.footerBackground {
    min-height: var(--footer-height);
    background-color: var(--main-color);
    overflow: hidden;
}

.footer {
    max-width: var(--max-content-width);
    margin-right: auto;
    margin-left: auto;
}

.footerList {
    float: left;
    padding: 10px 100px 10px 10px;
    display: table-cell;
}

.footerList h2 {
    font-size: 17px;
}

.footerList a {
    font-size: 15px;
}

.footerList a:hover {
    background-color: var(--main-text-color-hover-background);
}

.footerList ul {
    list-style-type: none;
    padding: 0;
}

.footerList ul li {
    display: block;
    padding-top: 8px;
    font-size: 15px;
}

.footer p {
    line-height: var(--navigation-height);
    float: right;
    font-size: 13px;
    padding-right: 10px;
}

.footer span {
    font-size: 13px;
}

.cookieBackground {
    background-color: rgba(150, 150, 150, 0.9);
    position: fixed;
    bottom: 0;
    width: 100%;
}

.cookieContent {
    font-size: 13px;
    padding: 10px;
    text-align: center;
}

.cookieContent a {
    font-size: 13px;
    text-decoration: underline;
}

.cookieContent a:hover {
    background-color: var(--main-text-color-hover-background);
}

@media screen and (max-width: 800px) {

    .navigation a {
        display: none;
        width: 90%;
    }

    .navigation a.menuIcon {
        float: right;
        display: block;
    }

    .navigation.open .menuIcon {
        position: absolute;
        top: var(--header-image-height);
        right: 0;
    }

    .navigationBackground {
        height: auto;
    }

    .navigation.open a {
        line-height: normal;
        padding-top: 4px;
        padding-bottom: 4px;
        float: none;
        display: block;
        text-align: left;
    }

    .siteContent {
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .siteContentBig {
        padding: 0px 10px 10px 10px;
    }

    .siteContentSmall {
        padding: 0px 10px 10px 10px;
    }

    .line {
        color: var(--main-color);
        max-height: 0.75vh;
        min-height: 3px;
    }

    .footer p {
        text-align: center;
        padding-left: 5px;
        padding-right: 5px;
    }
}
