* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.post-entry {
    margin: 1rem 0;
    padding: .5rem;
    background-color: rgb(243, 243, 243);
}

.post-entry h2 {
    text-shadow: 4px 4px 8px rgb(139, 139, 139);
    padding: .5rem;
}

.post-entry p {
    font-size: 1rem;
    padding: .5rem;
}

.post-entry h2 a {
    text-decoration: none;
    color: #003264;
}

footer, #about-us_box {
    display: none;
}

/* THIS IS WHERE THE MEDIA QUERY STARTS FOR DESKTOP */

@media screen and (min-width: 667px) {
    
    #header_text {
        text-align: center;
        font-size: 3em;
    }

    #story h2 {
        font-size: 3em;
    }

    .imagecontainer {
        max-width: 100%;
        max-height: 100%;
        padding-bottom: 1em;
    }

    .pictitle {
        text-align: left;
        padding-bottom: 1em;
    }

    body,
    html {
        height: 100%;
        margin: 0;
        font-family: 'Poppins', sans-serif;
    }

    .bg_a {
        background-image: url('../images/other_projects_prospect_4x6_blog_maybe.jpg');
        height: 100%;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        color: white;
        font-size: 1em;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #flavor_text {
        display: none;
    }

    #about-us_box {
        background: none;
        padding-bottom: 8em;
        display: block;
    }

    #about-us_tag {
        background: transparent;
        text-shadow: 0px 0px 0px rgb(139, 139, 139);
        padding: 0 4em;
        font-size: 3em;
        color: white;
        background-color: rgba(56, 56, 56, 0.9);
        border-radius: 3px;
    }

    .post-entry {
        padding: 3rem;
        margin: 
    }

    .post-entry h2 {
        font-size: 3rem;
    }

    .post-entry p {
        font-size: 1.5rem;
    }
}