body {
    background-color: #0d0d0d;
    color: #cccccc;
    font-family: "Courier New", Courier, monospace;
    margin: 40px auto;
    max-width: 700px;
    padding: 0 20px;
    line-height: 1.5;
}

h1 {
    font-size: 30px;
    margin-bottom: 0;
    color: #f0f0f0;
}

.site-header {
    border-bottom: 2px solid #333333;
    padding-bottom: 10px;
    margin-bottom: 30px;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
    align-items: flex-end;
}

.site-name {
    float: left;
    font-weight: bold;
    color: #e0a030;
}

.site-name-photo{
    width: 8rem;
    clip-path: circle(50%);
}

.site-nav {
    float: right;
}

.site-nav a {
    margin-left: 12px;
    color: #e0a030;
    text-decoration: none;
}

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


/* Main screen */
.post {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid #262626;
    text-decoration: none;
    color: #cccccc;
}

.post:hover {
    background-color: #161616;
}

.post-date {
    font-size: 12px;
    color: #777777;
}

.post-title {
    font-size: 18px;
    font-weight: bold;
    color: #e0a030;
    text-decoration: underline;
    margin: 4px 0;
}

.post-tags {
    font-size: 12px;
    color: #777777;
    margin-bottom: 8px;
}

.post-preview {
    font-size: 14px;
    margin: 0 0 6px 0;
}

.read-more {
    font-size: 12px;
    color: #999999;
}


/* Post screen */
.byline {
    font-size: 13px;
    color: #999999;
    margin-bottom: 20px;
}

.back-link {
    display: inline-block;
    margin-top: 20px;
    color: #e0a030;
    text-decoration: none;
    font-size: 14px;
}

.back-link:hover {
    text-decoration: underline;
}