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

body {
    font-family: 'Courier New', monospace;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    max-width: 650px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Header */
header {
    margin-bottom: 40px;
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
}

h1 {
    font-size: 24px;
    font-weight: normal;
    margin-bottom: 10px;
}

nav {
    font-size: 14px;
}

nav a {
    color: #0066cc;
    text-decoration: none;
}

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

/* Main content */
main {
    margin-bottom: 40px;
}

section {
    margin-bottom: 30px;
}

h2 {
    font-size: 18px;
    font-weight: normal;
    margin-bottom: 15px;
}

h3 {
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 10px;
}

p {
    margin-bottom: 10px;
}

/* Links */
a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Lists */
ul {
    list-style: none;
    padding-left: 0;
}

li {
    margin-bottom: 8px;
}

/* Footer */
footer {
    border-top: 1px solid #333;
    padding-top: 20px;
    font-size: 14px;
    color: #666;
}

/* Audio player */
audio {
    width: 100%;
    margin: 10px 0;
}

/* Date styling */
.date {
    color: #666;
    font-size: 14px;
    font-style: italic;
}