@font-face {
    font-family: 'RIDIBatang';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_twelve@1.0/RIDIBatang.woff') format('woff');
    /* Add additional font formats here (WOFF2, TTF, OTF) for better compatibility */
}

body {
    font-family: 'RIDIBatang', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #004080;
}

.back {
    margin-bottom: 30px;
}

.title {
    font-size: 2em;
    margin: 0;
    width: 100%;
    /* margin: 0 0 0 20px; */
    flex-grow: 1;
}

.author {
    text-align: right;
    font-style: italic;
    margin-bottom: 30px;
}

.content {
    text-align: justify;
}

.article-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
}

.back-button {
    margin-bottom: 20px;
}

@media (max-width: 600px) {
    body {
        font-size: 16px;
        padding: 15px;
    }

    .title {
        font-size: 1.5em;
    }

    .author {
        text-align: left;
        margin-top: 10px;
    }

    .back-button {
        margin-bottom: 20px;
    }

    .article-header {
        flex-direction: column;
        align-items: flex-start;
    }
}