body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    width: 80%;
    margin: 0 auto;
    overflow: hidden;
}

header {
    background: #35424a;
    color: #fff;
    padding-top: 30px;
    min-height: 70px;
    border-bottom: #e8491d 3px solid;
}

header h1 {
    text-align: center;
    text-transform: uppercase;
    margin: 0;
    font-size: 24px;
}

header nav {
    text-align: center;
    margin-top: 10px;
}

header nav ul {
    padding: 0;
    list-style: none;
}

header nav ul li {
    display: inline;
    margin: 0 10px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
}

header nav ul li a:hover {
    color: #e8491d;
}

main {
    padding: 20px;
    background: #fff;
    margin-bottom: 20px;
}

.post, .post-full {
    background: #fff;
    margin-bottom: 20px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.post h3, .post-full h1 {
    margin-top: 0;
}

.post-content {
    margin-top: 10px;
}

.post-nav {
    text-align: center;
    margin-top: 20px;
}

.post-nav a {
    color: #e8491d;
    text-decoration: none;
    font-weight: bold;
    padding: 5px 10px;
}

.post-nav a.prev {
    margin-right: 10px;
}

footer {
    background: #35424a;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}

footer.container a {
    text-decoration: none;
    color: aliceblue;
}