a {
    text-decoration: none;
    color: black;
}

.main-blog-article {
    width: 760px;
    
    padding: 20px;
    margin: 0 auto;
    margin-top: 40px;

    text-align: center;
    color: black;
    font-size: 20px;
    line-height: 36px;

    background-color: white;
}

.blog-article-promo-wrapper {
    width: 800px;
    height: 200px;
    position: relative;

    margin: 0 auto;
    margin-top: 40px;

    background: #ffae00;
    background: -moz-linear-gradient(45deg, #ffae00 0%, #f68e34 100%);
    background: -webkit-linear-gradient(45deg, #ffae00 0%,#f68e34 100%);
    background: linear-gradient(45deg, #ffae00 0%,#f68e34 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffae00', endColorstr='#f68e34',GradientType=1 );
}

.blog-article-promo {
    height: 100%;
    width: 100%;
    
    background-image: url("../pictures/promo/book-promo-long.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

@media only screen and (max-width: 800px) {
    
    .main-blog-article {
        width: calc(100% - 40px);
    }

    .blog-article-promo-wrapper {
        width: 100%;
    }
    
}