/* The hero image */
.banner {
    /* Use "linear-gradient" to add a darken background effect to the image (photographer.jpg). This will make the text easier to read */
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(/images/pexels-pixabay-51965.png );


    /* Set a specific height */
    height: 200px;
    width: 100%;
    /* Position and center the image to scale nicely on all screens */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

/* Place text in the middle of the image */
.hero-text {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
}

.banner_image {
    width: 100%;
    height: 100px;
}

.customHr {
    width: 95% font-size: 1px;
    color: rgba(0, 0, 0, 0);
    line-height: 2px;

    background-color: grey;
    margin-top: -6px;
    margin-bottom: 10px;
}