/* Importa a fonte Crimson Text do Google Fonts - similar ao Times New Roman */
@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&display=swap');

@font-face {
    font-family: 'CustomFont';
    src: url('font.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'CustomFont', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-header {
    background-color: #fff;
    padding: 20px 0;
    margin-bottom: 40px;
}

.site-title {
    font-size: 24px;
    color: #333;
    text-decoration: none;
    font-family: 'CustomFont', sans-serif;
}

.footer-divider {
    font-family: monospace;
    font-size: 18px;
    overflow: hidden;
    white-space: nowrap;
    margin-top: 12px;
}

.post-date {
    font-size: 10px;
    color: #666;
}

.post-content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.post-content .post-date,
.post-content p,
.post-content a {
    margin: 0;
}

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

.desc {
    font-size: 18px;
}

a {
    text-decoration: underline !important;
    text-decoration-color: red !important;
    text-decoration-thickness: 3px !important;
    text-underline-offset: 4px !important;
    text-decoration: none;
    color: #222;
    padding: 0 4px;
}

a:hover {
    text-decoration: underline !important;
    text-decoration-color: red !important;
    text-decoration-thickness: 3px !important;
    text-underline-offset: 4px !important;
    text-decoration: none;
    color: #eee;
    background-color: #222;
}


.red {
    color: #f00;
}

.post-header {
    margin-bottom: 40px;
    border-bottom: 2px solid #eee;
}

.post-single .post-title {
    font-size: 24px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.post-meta {
    margin-bottom: 30px;
}

.post-meta .post-date {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.post-tldr {
    font-size: 14px;
    color: #777;
    margin: 0;
}

.post-navigation {
    padding-top: 30px;
    margin-top: 18px;
    border-top: 1px solid #eee;
}

.nav-back {
    display: inline-block;
    font-size: 14px;
}

.reading-font {
    font-family: 'Crimson Text', 'Times New Roman', Times, serif !important;
    font-size: 18px;
}