/*todo farben auslagern in neues css file damit dies vom git entfernt werden kann und jede installation eigene farben hat*/

html {
    height: 100%;
    box-sizing: border-box;
}

* {
    padding: 0;
    margin: 0;
}

*, *:after, *:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: inherit;
}

a {
    text-decoration: none;
}

a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

/*Header*/
header {
    display: block;
    /* height: 270px; */
}

header .container {
    display: flex;
    padding: 15px 15px 15px 15px;
}

header img {
    height: 40px;
    width: auto;
}

/*Haupt Navigation*/
nav ul {
    list-style: none;
    text-align: center;
    padding: 0;
    margin: 0;
}

nav li {
    font-size: 1.2em;
    line-height: 40px;
    height: 40px;
}

nav a {
    text-decoration: none;
    display: block;
}

nav a:hover {
    text-decoration: none;
}

nav a:active {
    text-decoration: none;
    color: #444;
    cursor: default;
}

@media screen and (min-width: 600px) {
    header {
        /* height: 120px; */
    }
    nav li {
        width: 120px;
        height: 50px;
        line-height: 50px;
        font-size: 1.4em;
        display: inline-block;
        margin-right: -4px;
    }
}

.companyLogo {
    flex: 1;
    padding: 1em;
}

body {
    position: relative;
    margin: 0;
    padding-bottom: 70px;
    min-height: 100%;
}

.textBlock {
    height: 196.7px;
    padding: 10px;
}

footer {
    height: 70px;
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
}

.list {
    padding-top: 20px;
}

#login_form img{
    max-width: 250px;
    height: auto;
    display: block;
    margin: auto;
}