body {
    display: flex;
    flex-direction: column;
    margin: 60px auto;
    width: 70%;
    background-color: lightgray;
    background-size: cover;
}
nav ul, footer ul {
    font-family:'Helvetica', 'Arial', 'Sans-Serif';
    padding: 0px;
    list-style: none;
    font-weight: bold;
    color: #333;
}
nav ul li, footer ul li {
    display: inline;
    margin-right: 20px;
    color: #333;
}
a {
    text-decoration: none;
    color: #333;
}
a:hover {
    text-decoration: underline;
}
h1 {
    font-size: 3em;
    font-family:'Helvetica', 'Arial', 'Sans-Serif';
}
p {
    font-size: 1.5em;
    line-height: 1.4em;
    color: #333;
}

.content{
    flex: 1 0 auto;
}
.footer {
    flex-shrink: 0;
    padding: 20px;
    border-top: 1px solid #d5d5d5;
    font-size: .8em;
    color: #333;
}

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

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