body{
    font-family: sans-serif;
    width: 100%;
}

/* Other devices */
@media screen and (min-width: 750px) {
    .container {
        width: 40%;
    }

    .nav-flex{
        flex-direction: row;
        flex-wrap: nowrap;
        align-content: center;
        align-items: center;
        justify-content: space-between;
    }
}

/* Mobile */
@media screen and (max-width: 749px) {
    .image{
        width: 100%;
    }

    html{
        padding: 0px;
        margin: 0px;
    }

    body{
        padding: 5px;
        margin: 5px;
    }
}

.text{
    margin-bottom: 10px;
    padding-bottom: 15px;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
}

.blog-text{
    line-height: 1.5;
}

.blog-text p:not(:first-child){
    text-indent: 1em;
}

.blog-text p:after(:h2){
    text-indent: 0em;
}

.summary{
    line-height: 1.5;
}

.image{
    max-height: 300px;
}

.flex{
    display: flex;
}

.nav-link{
    font-weight: 800;
}

.nav-link:visited{
    color: inherit;
}

.post-details{
    color: #5a5858;
}

blockquote{
    margin: 0px;
    border-left: 1px solid #898888;
    padding-left: 20px;
}