/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Selection Color */
::selection {
    background-color: #b1b1b1;
    color: #000000;
}

::-moz-selection {
    background-color: #b1b1b1;
    color: #000000;
}

body {
    font-family: 'Lora', serif;
    background-color: #c1c1c1;
    color: #000000;
    padding: 30px;
    line-height: 1.6;
}

span {
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    display: block;
    margin-top: 30px;
}

h1 {
    font-size: 24px;
    font-weight: 600;
    color: #000000;
    margin: 30px 0;
}

h2 {
    font-size: 22px;
    font-weight: 400;
    color: #000000;
    margin: 30px 0;
}

p {
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 30px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.datetime {
    font-size: 14px;
    font-weight: 600;
    color: #000000;
}

.main {
    position: relative;
    width: 100%;
}

.post {
    position: absolute;
    border-top: 2px solid #000000;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.special-post {
    margin-top: 30px;
    background-color: #000000;
    color: #ffffff;
    padding: 30px 30px 30px 30px;
}

.special-post h2 {
    padding-top: 0;
    margin-top: 0;
    color: #ffffff;
}

.special-post h2::first-letter {
    font-size: 72px;
    font-weight: 600;
    line-height: 0.8;
    float: left;
    margin-right: 8px;
    margin-top: 8px;
}

.special-post span {
    color: #ffffff;
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        align-items: flex-start;
    }
    .datetime {
        margin-top: 10px;
    }
}