        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            max-width: 800px;
            margin: 0;
            padding: 60px 20px 60px 60px;
            line-height: 1.7;
            color: #1a1a1a;
            background-color: #E8E4DB;
        }
        h1 {
            font-family: 'Roboto Slab', serif;
            font-size: 3.5em;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 10px;
            white-space: nowrap;
        }
        h2 {
            font-size: 1.5em;
            font-weight: 700;
            color: #1a1a1a;
            margin-top: 10px;
            margin-bottom: 25px;
        }
        .description {
            font-size: 1.1em;
            color: #1a1a1a;
            margin-bottom: 40px;
        }
        .description p {
            margin: 0.8em 0;
        }
        a {
            color: #17A2B8;
            text-decoration: none;
        }
        a:hover {
            text-decoration: underline;
        }
        .weeknotes {
            list-style: none;
            padding: 0;
        }
        .weeknotes li {
            margin-bottom: 10px;
            display: flex;
            gap: 20px;
        }
        .date {
            color: #1a1a1a;
            font-size: 1em;
            min-width: 110px;
            flex-shrink: 0;
        }
        @media (max-width: 768px) {
            body {
                padding: 40px 20px;
            }
            h1 {
                font-size: 2.5em;
            }
            h2 {
                font-size: 1.3em;
            }
            .weeknotes li {
                flex-direction: column;
                gap: 5px;
            }
            .date {
                min-width: auto;
            }
        }
        @media (max-width: 440px) {
            h1 {
                white-space: normal;
            }
        }