* {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
}

html {
    height: 98%;
}

.header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 13.5vh;
    display: flex;
    background-color: rgb(31, 31, 31);
    border-bottom: solid;
    border-bottom-color: #ff9e00;
    border-bottom-width: 0.48vh;
    justify-content: center;
}

.inner-header {
    width: 60%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.inner-header-logo {
    height: 11.5vh;
    display: block;
}

.inner-header-image-container {
    width: 16.5%;
}

.header-title {
    font-size: 6vh;
    font-family: Helvetica;
    color: white;
    margin-left: 2.7vh;
}

.drop {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.drop-image{
    width: 65%;
    height: 65%;
}

.dropdown:hover{
    background-color: #ff6d00;
}

.dropdown-container{
    display: flex;
    justify-content: flex-end;
    width: 20%;
}

.dropdown {
    box-shadow: 0vh 0.2vh 1.7vh 0vh rgba(0,0,0,0.2);
    border-radius: 1.6vh;
    background-color: #ff9e00;
    height: 7vh;
    width: 7vh;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ff9e00;
    min-width: 17vh;
    box-shadow: 0.5vh 0.85vh 1.7vh 0.5vh rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 1.6vh;
}

.dropdown-content a {
    color: white;
    padding: 1.28vh 1.7vh;
    display: block;
    font-family: Helvetica;
    font-size: 1.7vh;
}

.dropdown:hover .dropdown-content{
    display: block;
}

.dropdown-content a:hover {
    background-color: #ff6d00;
    border-radius: 1.6vh;
}

.main {
    width: 100%;
    min-height: 100%;
    display: block;
    background-color: rgb(46, 46, 46);
    text-align: center;
    font-family: Helvetica;
    font-size: 1.7vh;
    padding-top: 2vh;
    margin-top: 13.5vh;
}

.inner-main {
    width: 60%;
    height: 100%;
    display: block;
    margin: 0 auto;
}

.inner-main a:hover{
    text-decoration: underline;
}

.titleimg{
    box-shadow: 0.2vh 0.2vh 1.6vh 0.2vh darkgrey;
    width: 100%;
    height: 15vw;
    border-radius: 2vh;
}

h4{
    font-size: 3vh;
    font-family: Helvetica;
    color: #1a6630;
}

h20{
    font-size: 3vh;
    font-weight: bold;
    font-family: Helvetica;
    color: #65b345;
}

h21{
    font-size: 3vh;
    font-weight: bold;
    font-family: Helvetica;
    color: #ff9e00;
}

h22{
    font-size: 3vh;
    font-weight: bold;
    font-family: Helvetica;
    color: #e21e28;
}

.main-content{
    display: flex;
    justify-content: center;
}

.main-content h4{
    color: #ff7900;
}

.aktuelles{
    height: 70%;
    width: 70%;
    background-color: rgb(31, 31, 31);
    border: white;
    margin-bottom: 4vh;
    margin-top: 1vh;
    padding: 1.5vh;
    box-shadow: 0.2vh 0.2vh 1.6vh 0.2vh darkgrey;
    border-radius: 1.5vh;
}

.aktuelles h1{
    color: #ff9e00;
}

.aktuelles h2{
    color: white;
}

.aktuelles h3{
    color: #ff9e00;
}

.aktuelles h5{
    color: #155eab;
    font-size: 2vh;
}

.aktuelles h6{
    color: #e21e28;
    font-size: 2vh;
}

.aktuelles h7{
    color: #65b345;
    font-size: 2vh;
}

.aktuelles h8{
    color: #f5864f;
    font-size: 2vh;
}

.aktuelles a{
    color: inherit;
}

.form{
    height: 70%;
    width: 50%;
    background-color: rgb(31, 31, 31);
    margin-bottom: 4vh;
    margin-top: 1vh;
    padding-top: 1.5vh;
    box-shadow: 0.2vh 0.2vh 1.6vh 0.2vh darkgrey;
    border-radius: 1.5vh;
    
}

.form input{
    color: white;
    width: 80%;
    height: 1.5vw;
    padding: 0.2vw;
    border: 0.15vw solid lightgrey;
    border-radius: 1vh;
    background-color: black;
}

.form textarea{
    color: white;
    width: 80%;
    min-width: 80%;
    max-width: 95%;
    height: 5vw;
    min-height: 5vw;
    padding: 0.2vw;
    border: 0.15vw solid lightgrey;
    border-radius: 1vh;
    background-color: black;
}

.form button{
    width: 5vw;
    height: 2vw;
    background-color: #ff9e00;
    border: 0.1vw solid #ff9e00;
    border-radius: 1vh;
    color: white;
    font-size: 0.8vw;
}

.form button:hover{
    background-color: #ff6d00;
}

.form p, a{
    color: black;
}

.form h1{
    color: #ff9e00;
}

.form h2{
    color: white;
}

.form h4{
    color: green;
}

.footer {
    width: 100%;
    height: 25vh;
    background-color: rgb(31, 31, 31);
    display: flex;
    justify-content: center;
    position: relative;
    font-family: Helvetica;
    font-size: 1.7vh;
    box-shadow: 0.2vh 0.2vh 1.6vh 0.2vh darkgrey;
}
.inner-footer {
    width: 60%;
    height: 88%;
    display: flex;
    justify-content: space-between;
}

.about {
    margin: 2%;
    color: rgb(163, 163, 163);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.about img {
    height: 1.5vh;
    margin-right: 1vh;
}

.about a {
    color: #ff9e00;
}
.about a:hover {
    text-decoration: underline;
}

.links1 {
    margin: 2%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding: 1vh;
    color: white;
}

.links1 img {
    height: 1.5vh;
    margin-right: 1vh;
}

.links1 a {
    color: white;
}

.links1 a:hover {
    text-decoration: underline;
}

.links2 {
    margin: 2%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding: 1vh;
    color: white;
}

.links2 img {
    height: 1.5vh;
    margin-right: 1vh;
}

.links2 a {
    color: white;
}

.links2 a:hover {
    text-decoration: underline;
}

.footer-bottom {
    background-color: #ff9e00;
    height: 12%;
    width: 100%;
    position: absolute;
    bottom: 0%;
    display: flex;
    justify-content: center;
    align-items: center;
}



@media (orientation: portrait){

    .header {
        position: fixed;
        top: 0;
        width: 100%;
        height: 17vw;
        display: flex;
        background-color: black;
        border-bottom: solid;
        border-bottom-color: #ff9e00;
        border-bottom-width: 0.3vw;
        justify-content: center;
    }

    .inner-header {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .main{
        margin-top: 17vw;
        min-height: 50vh;
    }

    .inner-main {
        width: 100%;
        height: 100%;
        display: block;
        margin: 0 auto;
    }

    .inner-main img {
        height: 25vw;
    }

    .inner-header-image-container {
        margin-left: 1vh;
    }

    .inner-header-logo {
        height: 14vw;
        display: table-cell;
        vertical-align: middle;
    }
    
    .header-title {
        font-size: 5vw;
        font-family: Helvetica;
        color: white;
        margin-left: 2.7vh;
    }

    .dropdown-container {
        margin-right: 1vh;
    }

    .drop {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
    }
    
    .drop-image{
        width: 65%;
        height: 65%;
    }

    .dropdown:hover{
        background-color: #ff6d00;
    }

    .dropdown {
        box-shadow: 0vw 0.1vw 0.9vw 0vw rgba(0,0,0,0.2);
        border-radius: 2vw;
        background-color: #ff9e00;
        height: 13vw;
        width: 13vw;
        
        left: 100%;
        float: right;
    }
    
    .dropdown-content {
        display: none;
        position: absolute;
        background-color: #ff9e00;
        min-width: 18vw;
        box-shadow: 0.6vw 1vw 1.8vw 0.6vw rgba(0,0,0,0.2);
        z-index: 1;
        border-radius: 2vw;
        right:0;
    }
    
    .dropdown-content a {
        color: white;
        padding: 2vw 2.5vw;
        display: block;
        font-family: Helvetica;
        font-size: 6vw;
    }
    
    .dropdown-content a:hover {
        background-color: #ff6d00;
        border-radius: 0.85vw;
    }

    .aktuelles h1{
        color: #ff9e00;
        font-size: 6.5vw;
    }

    #impressumlink{
        font-size: 4vw;
    }

    .form{
        height: 70%;
        width: 80%;
        background-color: rgb(31, 31, 31);
        margin-bottom: 4vh;
        margin-top: 1vh;
        padding-top: 1.5vh;
        box-shadow: 0.2vh 0.2vh 1.6vh 0.2vh darkgrey;
    }
    
    .form input{
        width: 80%;
        height: 4vw;
        padding: 1vw;
        border: 0.5vw solid lightgrey;
        border-radius: 1vh;
    }
    
    .form textarea{
        width: 80%;
        min-width: 80%;
        max-width: 95%;
        height: 15vw;
        min-height: 5vw;
        padding: 1vw;
        border: 0.5vw solid lightgrey;
        border-radius: 1vh;
    }
    
    .form button{
        width: 20vw;
        height: 10vw;
        background-color: #ff9e00;
        border: 0.1vw solid #ff9e00;
        border-radius: 1vh;
        color: white;
        font-size: 3vw;
    }
    
    .form button:hover{
        background-color: #ff6d00;
    }
    
    .form p, a{
        color: black;
    }

    .footer {
        width: 100%;
        height: 57vh;
        background-color: rgb(31, 31, 31);
        display: flex;
        justify-content: center;
        position: relative;
        font-family: Helvetica;
        font-size: 2vh;
    }
    .inner-footer {
        width: 100%;
        height: 93%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }

    .about {
        height: 25vh;
        width: 26vh;
        margin: 2%;
        color: rgb(163, 163, 163);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .about-p {
        margin-top: 3vh;
    }
    
    .links1 {
        height: 25vh;
        width: 26vh;
        margin: 2%;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        padding: 1vh;
    }

    .links2 {
        height: 25vh;
        width: 26vh;
        margin: 2%;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        padding: 1vh;
    }

    .footer-bottom {
        background-color: #ff9e00;
        height: 7%;
        width: 100%;
        position: absolute;
        bottom: 0%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}