body{
    margin: 0;
    overflow: hidden;
}

.Container{
    width: 55vw;
    height: 100vh;
    overflow: hidden;
    position: absolute;
    padding: 0;
}

.Image{
    /*Center Image in Div */
    margin-left: 50%;
    transform: translateX(-50%);
    filter: brightness(80%);
    width: 100vw;
    min-height: 100vh;
    vertical-align: middle;

    transition: all .5s ease-in-out;
}

.Container:hover .Image{
    margin-left: 50%;
    transform: translateX(-50%) scale(1.2); 
}

#Offizell {
    left: 0;
}

#Freiwillig {
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 10% 100%);
    right: 0;
}

#Offizell .ImageText {
    clip-path: polygon(0 0, 90% 0%, 100% 100%, 0% 100%);
    text-align: left; 
    padding-right: 50px;
    padding-left: 30px;
    border-width: 9px 0px 9px 6px;
}

#Freiwillig .ImageText{
    clip-path: polygon(0 0, 100% 0, 100% 100%, 10% 100%);
    text-align: right; 
    padding-right: 30px;
    padding-left: 50px;
    border-width: 9px 6px 9px 0px;
}

.ImageText {
    position: absolute;
    display: flexbox;
    color: white;
    font-family: Arial Black;
    font-size: 2em;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 0.7em;
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.4);
    border-style: solid;
    border-color: whitesmoke;
}

div:hover .ImageText{
    text-decoration: underline;
}

#button {
    position: absolute;
    display: flexbox;
    color: white;
    font-family: Arial Black;
    font-size: 1em;
    top: 90%;
    left: 50%;
    transform: translate(-50%,-50%);
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.4);
    border: 2px solid whitesmoke;
}
#button:hover{
    text-decoration: underline;
}

@media only screen and (orientation: portrait) {
    .Container{
        width: 100vw;
        height: 55vh;
    }

    .Image{
        width: 100vh;
        min-height: 100vw;
    }    

    #Freiwillig {
        bottom: 0;
        clip-path: polygon(0 0, 100% 10%, 100% 100%, 0% 100%);
    }

    #Freiwillig .ImageText{
        text-align: center;
        width: 40vw;
        clip-path: polygon(0 0, 100% 20%, 100% 100%, 0% 100%);
        border-width: 0px 9px 6px 9px;
        padding-top: 50px;
    }
    #Offizell .ImageText {
        text-align: center;
        width: 40vw;
        clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 80%);
        border-width: 6px 9px 0px 9px;
        padding-bottom: 50px;
    }
    #button {
        top: 47.5vh;
        left: 50%;
        transform: translate(-50%,-50%);
    }
}