html {
    padding: 0vh 20vw;
    background-color: #fff;
    font-family:"Source Serif 4", serif;
}

body {
    max-width: 600px;
    margin: 0 auto;
}

h1 a {
    color: black;
    text-decoration: none;
}
img.me {
    border: 1px solid black;
}

.header-bar {
    width: 100%;
    text-align: center;
}
.header {
    display: flex;
    justify-content: center;
    align-items: center;

    .left {
        text-align: right;
        z-index: 2;
    }
    .right {
        text-align: left;
    }
}

.social-bar {
    text-align: center;
    & p {
        padding: 0;
        margin: 0;
        & a {
            text-decoration: none;
            &:hover {
                text-decoration: underline;
            }
        }
    }
}

.current-post {
    border-left: 5px solid #eee;
    border-bottom: 5px solid #ddd;
    background-color: #f7f7f7;
    border-radius: 10px;
    padding: 1vh 2vw;
    margin: 1.5vh 0vw;
    border-top: 1px solid #eee;
    border-right: 1px solid #eee;

    .post-title {
        font-family: 'Courier New', Courier, monospace;
        color: black;
        margin: 0;
    }
}

a.post-timestamp {
    color: black;
    text-decoration: none;
    font-family: 'Courier New', Courier, monospace;
    font-size: 12px;
    font-weight: normal;
    &:hover {
        text-decoration: underline;
    }
}


.posts-list-header {
    font-family: 'Courier New', Courier, monospace;
    font-size: 24px;
    font-weight: bold;
    margin: 2vh 0vw;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.posts-list {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 0 2vw;
    margin-bottom: 20px;
    
    & div.post-preview {
        & h3 {
            margin-bottom: 0;
            font-family: 'Courier New', Courier, monospace;
            & a {
                color: black;
                text-decoration: none;
                &:hover {
                    text-decoration: underline;
                }
            }
        }
        & div.post-summary {
            font-family: 'Source Serif 4', serif;
            font-size: 14px;
            font-weight: 400;
            & p {
                margin: 10px 0 0 0;
            }
            & a.read-more {
                color: black;
                font-size: 12px;
                font-weight: 400;
                font-style: italic;
                text-decoration: none;
                &:hover {
                    text-decoration: underline;
                }
            }
        }
    }
}

iframe[title="YouTube video player"] {
    width: 100% !important;
    aspect-ratio: 16/9 !important;
}