body {
    background-color: #DDDDDD;
    color: #222222;
    font-family: serif;
    font-size: 1.2em;
    line-height: 1.5;
    margin: 0;
    padding: 15px;
    hyphens: auto;
    -webkit-hyphens: auto;
}

/* Main content wrapper */
.content, .header, .footer {
    max-width: 500px;
    margin: 0 auto;
    text-align: justify;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #0000FF;
    margin-top: 15px;
    margin-bottom: 15px;
    text-align: left;
}

a {
    color: #0000FF;
    text-decoration: underline;
}

a:visited {
    color: #0000FF;
}

/* Header */
.header {
    margin-bottom: 50px;
}

.sitename h1 {
    font-size: 32px;
    /* Exception: title font size */
    font-style: italic;
    font-weight: normal;
    color: #0000FF;
    margin-top: 0;
    margin-bottom: 15px;
}

.sitename h1 a {
    text-decoration: underline;
}

.navigation {
    display: flex;
    justify-content: space-between;
    text-align: left;
}

.nav-left,
.nav-right {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;
}

.entry-title h2 {
    margin: 0 0 15px 0;
}

.post-meta {
    font-style: italic;
    font-size: 14px;
    margin-bottom: 15px;
    margin-top: -15px;
    /* Reduce space between title and meta */
}

.filters h3 {
    margin-bottom: 15px;
}

.filter-group {
    margin-bottom: 15px;
}

.filters-links {
    line-height: 1.5;
}

.filters-links a {
    margin-right: 5px;
}

.read-more {
    text-align: right;
    display: block;
    width: fit-content;
    margin-left: auto;
}

.read-more.left-align {
    text-align: left;
    margin-left: 0;
    margin-right: auto;
}

.entry-content {
  padding-bottom: 30px;
}

button {
    background: transparent;
    border: none;
    color: #0000FF;
    text-decoration: underline;
    font-family: serif;
    font-size: 16px;
    cursor: pointer;
    padding: 0;
}

.footer {
    margin-top: 50px;
    font-size: 16px;
}

.navigation a.active,
.filters a.active {
    font-style: italic;
}

.sitename h1 a {
    display: inline-block;
    transition: transform 0.5s;
}

.sitename h1 a:hover {
    /* transform: scaleX(-1); */
    transform: rotate(-5deg);
}

hr {
  border-top: 1px dashed #555555;
  max-width: 500px;
  margin: auto;
  margin-top: 30px;
  margin-bottom: 30px;
  }

/* Responsive */
@media (max-width: 600px) {
    .navigation {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 15px;
    }
}
