/* body {
    background-color: #0000ff;
} */
a:hover {
}

navigation .links {
    text-align: right; 
    width: 100%;
    margin-bottom: 50px;
    padding-top: 8px;
}

nav .social {
    height: 25px;
    margin: 0px 4px;
}

.text-with-image {
    display: flex;
    align-items: center;
}

.text-with-image img {
    max-width: 300px;
}

.image-left {
    order: 0;
    margin-right: 20px;
}

.image-right {
    order: 1;
    margin-left: 20px;
}

.text-with-image p:not(:last-child) {
    margin: 0 0 10px 0;
}

.text-with-image p:last-child {
    margin: 0;
}

.tags a {
    border-bottom: 30px;
}

a {
    border-bottom: 0px !important; 
    color: inherit;
    text-decoration: none;
}

h1::before {
    content: '' !important;
}

footer {
    border-top: none !important;
}

.list-item {
    margin-bottom: 40px;
}

.post-image-wrapper {
    display: flex;
    justify-content: center; 
    padding-left: 20px;
    width: 200px;
    height: 200px;
}

@media screen and (max-width: 500px) {
    /* blog entry */
    .text-with-image {
        flex-direction: column; /* for stacking vertically */
        height: auto;
    }

    /* home page */
    .post-wrapper {
        flex-direction: column; /* for stacking vertically */
        height: auto;
    }

    .post-image-wrapper {
        padding-left: 0px;
        width: auto;
        height: auto;
    }

    .post-image {
        width: calc(100% - 40px);
    }

    div.post-content section.body p {
        max-width: 100%;
    }
}