/* small screens and both small and big */
body {
    background: black;
    color: white;
    font-family: sans-serif;
    font-size: small;
}

a {
    color: lightcyan;
}
h1,h2,h3,h4,h5,h6 {
    margin: auto;
}
h1 {
    padding: 10px;
}

.feed {
}

.post {
    /*background-color: darkcyan;*/
    padding: 10px;
    width: 90%;
    border-left: lightcyan 1px dashed;
}
.post_image {
    width: 100px;
    float: left;
    vertical-align: top;
    padding: 5px;

}


#masthead {
    /* :reference (Answer to ‘Changing image src depending on screen size’. 2017)*/
    content:url("html_resources/logo_80.png");
    height: 80px;
    width: 251px;
    margin: auto;
    padding: 5px;
}
/* single column*/
#content {
    display: flex;
    flex-direction: column;
    max-width: 95%;
    margin-left: auto;
    margin-righ: auto;
    align-items: flex-start;
}


/* :reference (W3Schools [no date - b])
    big screens screens
*/
@media only screen and (min-width: 601px) {
    #content {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }
    #masthead {
        height: auto;
        width: auto;
        /* :reference (Answer to ‘Changing image src depending on screen size’. 2017)*/
        content:url("html_resources/logo_full.png");
        padding: 25px;
    }
    #main_content {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .feed-section#podcasts {
        flex: 20%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .feed-section {
        flex: 40%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
}
