.blog-content-section, .homeContent {
    padding-bottom: 20px;
    padding-top: 90px;
    background-color: rgb(44 47 51);
}

.blog-title {
    text-align: center;
    color: white;
}

.blog-date, .postDate {
    color: rgb(184, 184, 184);
    text-align: center;
}

.blog-content {
    color: rgb(255, 255, 255);
    margin-left: 250px;
    margin-right: 250px;
    line-height: 30px;
}
@media only screen and (max-width: 800px) {
    .blog-content {
        margin-left: 25px;
        margin-right: 25px;
    }
}


.postPreview {
    text-align: center;
    width: fit-content;
    padding: 5px;
    border-color: gray; 
    border-radius: 5px; 
    border-width: 2px; 
    border-style: solid;

    margin: auto;
    max-width: 800px;
    margin-bottom: 15px;
}

.pageTitle {
    font-size: 30px;
    text-align: center;
    color: white;
    padding-bottom: 10px;
}

.explore-more-content {
    background-color: #2970cc; 
    border-radius: 5px; 
    width: fit-content; 
    margin: auto;
    justify-content: center;
    padding: 0.4em 0.8em;
    color: white;
    display: flex;
    font-weight: 400;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}

.explore-more-content:hover {
    background-color: #4683d2;
}

.blog-content-section ul, .blog-content-section ol {
    list-style-type: initial;
    padding-left: 25px;
    padding-top: 12px;
    padding-bottom: 12px;
}

code  {
    background-color: rgb(29, 29, 29);
    padding: 2px;
    border-radius: 2px;
}

blockquote {
    background: #b5b5b5;
    border-left: 10px solid #565656;
    margin: 1.5em 10px;
    padding: 0.5em 10px;
    quotes: "\201C" "\201D" "\2018" "\2019";
}

blockquote p {
    display: inline;
    color: black;
}

blockquote code {
    color: white;
}

img {
    display: block;
}

.blog-content h1, .blog-content h2, .blog-content img {
    margin-top: 30px;
    margin-bottom: 30px
}