.blog-header {
    position: relative;
    width: auto;
    height: auto;
    padding-bottom: 0em;
    font-size: 16px;
    margin-bottom: 4em;
}

.blog-header--container {
    display: flex;
    flex-direction: column;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 36em;
}

.blog-header--image {
    position: relative;
    text-align: center;
    margin: 0 auto;
    width: 100%;
    height: 32em;
    background-color: white;
    background-position: center;
    background-size: cover, contain;
    text-align: center;
}

.blog-header--title {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    background-color: rgba(255, 255, 255, 1);
    display: block;
    border: 1px solid rgba(0, 0, 0, 0.3);
    padding: 1em 1em;
    font-size: 2em;
    text-align: center;
    box-shadow: 0 0 6px 6px rgba(255, 255, 255, 0.8);
    max-width: 60%;
    width: auto;
}

@media only screen and (max-width: 768px) {
    .blog-header--title {
        max-width: 84%;
    }
}