
.left_coverage, .right_coverage, .center_coverage, .coverage_container{
    height: 10px
}

.coverage_container {
    /** put all inner divs in a row */
    display: flex;
    flex-direction: row;
    justify-content: center;
    border: 1px solid #000;
}

.left-coverage {
    background-color: #f00;
    width: 30%;
}

.right-coverage {
    background-color: #00f;
    width: 20%;
}

.center-coverage {
    background-color: #fff;
    width: 50%;
}

.source-image {
    width: auto;
    max-height: 30px;
    max-width: 50px;
    margin: 7px;
}

.source-image-large {
    width: auto;
    max-height: 60px;
    max-width: 100px;
    margin: 7px;
}

.src-container {
    /* center text vetical */
    display: flex;
    align-items: center;
    height: 100%;
}

.art-img-container {
    max-height: 300px;
    height: 100%;
    width: auto;
    
}

.art-img-container a {
    /* center image */
    margin: auto;
    width: 100%;
    height: 100%;

}

.art-img-container a img {
    /* contain image */
    height: 100%;
    width: auto;
    display: flex;
    margin: auto;
}