* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', Helvetica, sans-serif;
    line-height: 1.7;
    color: #333;
    max-width: 720px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

header {
    margin-bottom: 2rem;
    /* padding-bottom: 1rem; */
    border-bottom: 1px solid #ddd;
}

header nav a {
    font-family: 'Bebas Neue', Impact, 'Arial Narrow', sans-serif;
    font-size: 3rem;
    color: #111;
    text-decoration: none;
}

main {
    min-height: 60vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Bebas Neue', Impact, 'Arial Narrow', sans-serif;
    margin-top: 1rem;
    margin-bottom: 1rem;
    color: #111;
}

.post-list {
    list-style: none;
}

.post-list li {
    margin-bottom: 0.5rem;
}

.post-list a {
    color: #1a5276;
    text-decoration: none;
    font-size: 1.1rem;
}

.post-list a:hover {
    text-decoration: underline;
}

article {
    margin-bottom: 2rem;
}

article h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

footer {
    margin-top: 3rem;
    padding-top: 1rem;
    border-top: 1px solid #ddd;
    color: #888;
    font-size: 0.9rem;
}

a {
    color: #1a5276;
}
