/* 
Corporate Colors
#2B2F88 dunkel lila
#6B3E91 hell lila
#D3547A rosa
#EC6708 orange
#E30B12 rot
#AADDF8 hellblau
*/

body {
    background: rgb(180, 180, 180);
    font-family: Verdana, Geneva, sans-serif;
    margin: 0;
}

.head {
    margin: -130px 10% 0 10%;
    height: 70px;
    width: 80%;
    background: rgb(180, 180, 180);
    text-align: center;
    position: fixed;
}

.groupname {
    font-family: Courier New, Courier, monospace;
    padding-left: 30px;
    position: absolute;
    color: rgb(150, 150, 150);
    font-size: 3.5em;
    text-align: left;
    overflow: hidden;
    display: flex;
} 

.groupnamefont {
    font-family: Courier New, Courier, monospace;
    font-weight: normal;
    display: inline;
}

.logocrop {
    display: block;
    margin-left: -30px;
    height: 70px;
    width: 80px;
    overflow: hidden;
}

.logocrop img {
    height: 170px;
    margin-bottom: 0px;
    
} 

nav {
    margin: -60px 10% 12px 10%;
    background: white; 
    height: 40px;
    width: 80%;
    position: fixed;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: white;
}

nav li {
    float: left;
    min-width: 138px;
}

nav li a {
    display: block;
    color: #2B2F88;
    font-weight: bold;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

nav li a:hover {
    background-color: #AADDF8;
}

nav .dropdown-content {
    display: none;
    position: absolute;
    background-color: #AADDF8;
    min-width: 138px;
}

nav .dropdown-content a {
    font-weight: normal;
    padding: 12px 16px;
    text-decoration: none;
    /*display: block;*/
    float: left;
    text-align: left;
    min-width: 106px;
}

nav .dropdown-content a:hover {
    background-color: #2B2F88;
    color: white;
}

nav li a:hover, .dropdown:hover .dropdown-link {
    background-color: #AADDF8;
}

nav .dropdown:hover .dropdown-content {
    position: absolute;
    left: 0;
    width: 100%;
    display: block;
    overflow: hidden;
}

nav #impressum {
    float: right;
}

.content {
    margin: 130px 10% 12px 10%;
    background: white;
    width: 78%;
    min-height: 75%;
    padding-left: 1%;
    padding-right: 1%;  
    padding-top: 1%;
}


h1 {
    margin: 0;
}

.foot {
    margin: 0 10% 1% 10%;
    height: 40px;
    width: 80%;
    color: white;
    background-color: #6B3E91;

}

hr {
    border-top: 1px solid #ddd;
}

