
/** Footer **/
#footer {
    display: flex;
    background-color: #001534;
    position: fixed;
    width: 100%;
    height: 40px;
	bottom: 0;
	background: url('/static/img/alphaspeech_wellengrafik.png') right bottom no-repeat #001534;
    background-size: contain;
}

#footer a {
    text-decoration: none;
    margin: auto;
    color: rgba(255,255,255,0.6);
}
#footer a:hover {
    text-decoration: underline;
}
#footer a:visited {
  color: rgba(255,255,255,0.6);
}

/** Header **/

#header {
    background-color: #001534;
    position: relative;
    width: 100%;
    height: 100px;
    white-space: nowrap;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

#header a {
    height: 40%;
    margin: 0px 50px;
    z-index: 888;
}

#header img {
    height: 100%;
    max-width: -webkit-fill-available;
}

#header::after {
    background: url('/static/img/Wellengrafik_Header.png') left bottom no-repeat transparent;
    background-size: contain;
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    z-index: 700;
    display: inline-block;
    width: 20%;
    height: 100px;
    visibility: visible;
}

@media only screen and (max-width: 1240px) {
    #header a {
        height: 40%;
        margin: 0px 50px;
        flex-shrink: 1;
        min-width: 0;
    }
    #header img {
        max-width: -webkit-fill-available;
    }
    #header::after {
        width: 26vh;
    }
    .centered-div {
        flex-direction: column;
        align-items: center;
    }
    .centered-div button {
       width: 80%;
       max-width: 500px;
    }
}
