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

body {
    background-color: #151515;
    min-height: 100vh;
    padding: 20px;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 16px;
    color: #eaeaea;
    line-height: 1.8;
}

.container {
    display: grid;
    grid-template-columns: 3fr 1fr;
    grid-template-rows: auto auto 1fr auto;
    gap: 0;
    min-height: calc(100vh - 40px);
    width: 80%;
    margin: 0 auto;
}

.title {
    grid-column: 1 / 2;
    padding: 15px 20px;
    font-size: 120%;
    color: #ffffff;
    font-weight: bold;
    font-style: italic;
    letter-spacing: -0.5px;
}

.nav {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    padding: 15px 20px;
    font-size: 80%;
    text-align: right;
    border-bottom: 1px solid #464646;
}

.nav a {
    color: #5a5a5a;
    text-decoration: none;
}

.nav a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.subtitle {
    grid-column: 1 / 2;
    padding: 10px 20px;
    font-size: 75%;
    color: #eaeaea;
    border-bottom: 1px solid #464646;
}

.splash {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
    padding: 20px;
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url("https://siik.org/image/bg/26.0327.bg9.gif");
    background-position: bottom center;
    background-size: 100% auto;
    background-repeat: no-repeat;
}

.splash-content {
    text-align: left;
    align-self: center;
}

.splash img {
    max-width: none;
    width: auto;
}

.blog {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
    padding: 20px;
    min-height: 0;
    font-size: 80%;
}

.blog p {
    padding: 12px 0;
    line-height: 1.8;
}

.blog img {
    width: 100%;
    height: auto;
    display: block;
    image-rendering: pixelated;
}

.blog hr {
    border: 0;
    border-top: 1px solid #464646;
    margin: 12px 0;
    background: transparent;
}

.blog a {
    color: #13ffd5;
    text-decoration: none;
}

.blog a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.blog .entry-date {
    font-style: italic;
    font-size: 0.85em;
    color: #888888;
    vertical-align: baseline;
}

.content-page {
    grid-column: 1 / 3;
    grid-row: 3 / 4;
    padding: 20px;
    font-size: 80%;
    line-height: 1.8;
}

.content-page p {
    padding: 12px 0;
}

.content-page a {
    color: #13ffd5;
    text-decoration: none;
}

.content-page a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.content-page table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 1em;
}

.content-page th,
.content-page td {
    border: 1px solid #464646;
    padding: 10px;
    text-align: left;
}

.content-page th {
    background-color: #1a1a1a;
    color: #ffffff;
}

.content-page tr:nth-child(even) {
    background-color: #1a1a1a;
}

.footer-a {
    grid-column: 1 / 2;
    padding: 15px 20px;
    font-size: 60%;
    color: #888888;
}

.footer-b {
    grid-column: 2 / 3;
    padding: 15px 20px;
    font-size: 60%;
    color: #888888;
}

@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto 1fr auto;
        width: 100%;
    }

    .nav,
    .blog,
    .content-page {
        grid-column: 1;
        grid-row: auto;
    }

    .splash,
    .subtitle {
        display: none;
    }
}
