body {
    /* font-family: 'Arial', sans-serif; */
    font-family: 'Merriweather', serif;
    /* font-family: 'Raleway', sans-serif; */
    /* font-family: 'Montserrat', sans-serif; */
    /* font-family: 'Lora', sans-serif; */


    /* background-color: #f4f4f4; */
    color: #333;
    margin: 0;
    padding: 0;
    line-height: 1.8;
    font-size: 16px;
}

.article-body{
    font-size: 16px;
}

.container {
    max-width: 500px;
    margin: 30px auto;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
    color: #2E3D49;
    /* A dark shade for headers */
}

h1 {
    text-align: center;
    color: #2C3E50;
}

.meta {
    text-align: center;
    font-size: 14px;
    color: #7f8c8d;
}

.article-content {
    margin-bottom: 10px;
    padding: 10px;
    text-align: justify;
}

.article-content b {
    font-weight: bold;
    color: #2980b9;
}

.article-content p i {
    font-style: italic;
    /* font-size: 20px; */
    color: #16a085;
}

.buttons {
    text-align: center;
    margin: 20px 0;
}

.buttons button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 5px;
}

.buttons button:hover {
    background-color: #2980b9;
}

.comment-section {
    background-color: #ecf0f1;
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
}

.comment-section h3 {
    text-align: center;
    color: #2C3E50;
}

.comment-section input,
.comment-section textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #bdc3c7;
}

.comment-section input[type="submit"] {
    background-color: #2ecc71;
    color: white;
    cursor: pointer;
}

.comment-section input[type="submit"]:hover {
    background-color: #27ae60;
}

hr {
    /* color: #16a085; */
    border: 2px solid rgb(148, 148, 148);
}

blockquote{
    /* font-family: 'Playfair Display', serif; */
    font-size: 18px;
    /* Slightly larger for emphasis */
    line-height: 1.6;
    margin: 20px 0;
    padding: 15px;
    border-left: 5px solid #3ee3e9;
    /* Light blue border for contrast */
    background-color: #f0f0f0;
    /* Light gray background */
    color: #333;
    border-radius: 5px;
    text-align: center;
    font-style: italic;
    /* Adds a bit of style */
}

blockquote1{
    margin: 10px 0;
    padding: 10px;
    background-color: #f9f9f9; /* Light gray background */
    border-left: 5px solid #ccc; /* Gray border */
    font-style: italic; /* Italic text */
}


