.cropped-banner {
    width: 800px; /* width of container */
    height: 800px; /* height of container */
    overflow: hidden;
    display: grid; /* changed from table-cell to grid for better control */
    justify-items: end; /* align items to the end */
    align-items: end; /* align items to the bottom */
}

p {
    margin: 0; /* combined margin-top and margin-bottom to 0 */
    background: linear-gradient(180deg, rgba(121,9,9,0) 35%, rgba(139,0,0,1) 90%);
}

span { 
    /*background-color: #0071bc !important; */
    font-weight: bold;
    color: #fff;
    font-family: 'Lato', sans-serif;
    text-shadow: 0px 0px 19px rgb(0, 0, 0);
}

.overlay-banner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.29);
    overflow: hidden;
    width: 800px;
    z-index: 1;
    height: 800px;
}

.image-style {
    height: 6rem;
    float: right;
    margin-right:1rem;
    z-index:2;
    position:relative;
    text-shadow: 0px 0px 19px rgb(0, 0, 0);
}
