#theBanner {
    display: flex;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
    background-color: transparent;
    height: 100px;
    color: white;
    border-style: solid;  
    border-color: silver;
    border-width: 3px 3px 0px 3px;
}

#leftBanner {
    display: inline-block;
    /*background-color: transparents;*/
    width: 100px;
    height: 100px;
}

#middleBanner {
    display: inline-block;
    background-color: transparent;
    width: auto;
    flex-grow: 1;
    flex-direction: row;
    height: 100px;
}

#rightBanner {
    display: inline-block;
    width: 100px;
    height: 100px;
}

.mainBanner {
    background-image: url("./images/responsive/kbanner.png");
    background-repeat: no-repeat;
    background-position: center;
}

.kennerFettBg {
    background-image: url("./images/responsive/kfett.png");
    background-repeat: no-repeat;
    background-position: right top;
}

.kennerSkullBg {
    background-image: url("./images/responsive/kskull.png");
    background-repeat: no-repeat;
    background-position: left top;
}

@media (max-width: 737px) {
    #theBanner {
            border-width: 0px 0px 0px 0px;
    }
}

@media (max-width: 526px) {
    #rightBanner {
        display: none;
    }
}

@media (max-width: 426px) {
    #leftBanner {
        display: none;
    }
}

@media (max-width: 801px) {
    .mainBanner {
        background-image: url("./images/responsive/kbanners.png");
    }
}