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

/* RETRO PIXEL FONT */
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

body {
    font-family: 'Press Start 2P', monospace;
    background: #f6f6f6;
    color: #333;
    padding: 20px;
    line-height: 1.6;
}

/* TITLE */
.pixel-title {
    font-size: 24px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

/* NAV */
nav a {
    margin-right: 15px;
    text-decoration: none;
    color: #000;
}

nav a:hover {
    text-decoration: underline;
}

/* INTRO SECTION */
.intro {
    margin-top: 20px;
    max-width: 600px;
}

/* POST LIST */
.post-list ul {
    list-style: none;
    margin-top: 20px;
}

.post-list li {
    margin-bottom: 15px;
}

.post-list .date {
    color: #888;
    font-size: 12px;
}

/* BLOG POST */
.blog-post {
    margin-top: 20px;
    max-width: 700px;
}

/* FOOTER */
footer {
    margin-top: 40px;
    font-size: 12px;
    color: #666;
    text-align: center;
}
