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

body {
    font-family: Georgia, "Times New Roman", serif;
    background: white;
    color: #333;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    line-height: 1.6;
}
a {
    color: #999 !important;
    text-decoration: none;
    transition: all 0.2s;
    font-style: italic;
}

a:visited {
    color: #999 !important;
}

a:hover {
    color: #000 !important;
    text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "IM Fell English", Georgia, serif;
}

header {
    text-align: center;
    padding: 40px 0;
    border-bottom: 1px solid #ddd;
    margin-bottom: 40px;
}

header h1 {
    font-size: 2em;
    font-weight: normal;
    letter-spacing: 0.5px;
}

.site-description {
    margin-top: 15px;
    font-size: 1em;
    color: #666;
}

.masonry-container {
    column-count: 3;
    column-gap: 20px;
}

@media (max-width: 900px) {
    .masonry-container {
        column-count: 2;
    }
}

@media (max-width: 600px) {
    .masonry-container {
        column-count: 1;
    }
}

.category-column {
    break-inside: avoid;
    margin-bottom: 30px;
    padding: 15px;
    border: 1px solid #ddd;
    background: white;
}

.category-column h2 {
    font-size: 1.1em;
    margin-bottom: 15px;
    font-weight: normal;
    letter-spacing: 1px;
    color: #555;
}

.category-column ul {
    list-style: none;
}

.category-column li {
    margin-bottom: 10px;
}

.category-column a {    color: #999;    text-decoration: none;    transition: all 0.2s;    font-style: italic; }

.category-column a:visited {
    color: #999;
}

.category-column a:hover {
    color: #000;
    text-decoration: underline;
}

main p {    margin-bottom: 1.5em; }

