.article-body-container {
    width: 100%;
}

.article-body {
    font-family: 'Karla', sans-serif;
    font-size: 1rem;
    width: 80vw;
    margin: 0 auto;
}

.article-featured-image {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;

    display: flex;
    position: relative;
}

.article-title-container {
    /* Force title to be on bottom centre */
    position: absolute;
    
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100%;
    padding-left: 5vw;
    padding-right: 5vw;
}

.article-title {
    text-align: center;
    color: #fff;
    font-size: 8rem;
    font-family: 'Katibeh', cursive;
}

.article-content {
    background-color: rgba(255, 255, 255, 0.6);
    padding: 2rem;
}

.article-byline {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    padding-bottom: 2rem;
}

@media screen and (max-width: 768px) {
    .article-title {
        font-size: 2rem;
    }

    .article-byline {
        font-size: 1rem;
        padding-bottom: 1rem;
    }

    .article-content {
        font-size: 1rem;
        padding: 1rem;
    }
}