body {
    margin: 60px auto;
    width: 70%;
    font-family: 'Courier New', 'Serif';
    background-color: #fff;
    color: #000;
    max-width: 1000px;
}

nav ul,
footer ul {
    padding: 0px;
    list-style: none;
    font-weight: bold;
    display: flex;
}

nav ul li,
footer ul li {
    display: block;
    margin-right: 20px;
}

a {
    text-decoration: none;
    color: #999;
}

a:hover {
    text-decoration: underline;
    text-underline-offset: 5px;
}

p {
    font-size: 1em;
    line-height: 1.4em;
}

footer {
    border-top: 1px solid #000;
    font-size: .8em;
}

ul.posts {
    margin: 20px auto 40px;
    font-size: 1.5em;
}

ul.posts li {
    list-style: none;
}


.site-title {
    text-align: left;
    font-weight: bold;

}

.page-heading {
    margin-top: 40px;
    text-align: center;
}

.home-page-div {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

.headshot {
    width: auto;
    height: 300px;
    object-fit: contain;
    padding: 1rem;
}

nav li.current a {
    text-decoration: underline;
    text-underline-offset: 5px;
}

@media screen and (max-width: 768px) {

    nav ul,
    footer ul {
        flex-direction: column;
        font-size: 1.5em;
    }

    body {
        width: 90%;
    }

    .home-page-div {
        flex-direction: column;
    }

    .headshot {
        padding: 0rem;
    }
}

.travel-blog-img {
    height: 40vh;
    width: auto;
    min-height: 200px;
}

.screenshot-img {
    width: 100%;
    height: auto;
}