body {
    background-color: #e6e6e6; /* Set the background color to black */
    color: #000000;             /* Set text color to white for contrast */
    font-size: 1.5em;
}

.blog-card {
    font-size: 0.9em;
    background-color: #ededed;
    border: 1px solid #39e486;
    border-radius: 8px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 20px;
    padding-right: 20px;
    width:80em;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    h3 {
        margin-bottom: 2px;
        margin-top: 2px;
    }


    hr {
        margin-top: 5px;  /* Increase space above the line */
        margin-bottom: 5px; /* Optional: Adjust space below the line */
        border: 0;  /* Optional: Remove the default border style */
        border-top: 2px solid #000000;  /* Customize the line's appearance */
    }
    
}