body {
    background-color: #DFDFDD;
    font-family: 'Lora', serif;
}

.content {
    /* background-color: orange; */
    max-width: 70%;
    margin: 0 auto;
    padding: 20px;
}

.main-img {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
}

.with-img {
    margin-top: 20px;
    display: flex;
    gap: 20px;
    /* background-color: blue; */
}


#author-img {
    height: 100px;
    width: 100px;
    object-fit: cover;
    border-radius: 50%;
    filter: grayscale(100%);
}


#blog-name {
    font-size: 30px;
    font-weight: bolder;
}

#created-time {
    font-style: italic !important;
    margin-top: -20px;
}


#updated-time {
    font-style: italic !important;
    color: #4d4d4d;
    font-size: 18px;
}


#back-btn {
    text-align: right;
    margin-right: 20%;
    margin-bottom: 0;
    color: black !important;
    text-decoration: underline;
    font-size: 17px;
    font-weight: bold;
}

a:link,
a:visited,
a:hover,
a:active {
    color: black !important;
    /* Keeps the same color */
}

pre code.hljs {
    border-radius: 5px;
    font-size: 0.95rem;
}



/* For Mobile */
@media (max-width: 768px) {
    .content {
        /* background-color: orange; */
        max-width: 85%;
    }
    
    .without-img {
        max-width: 55%;
        /* background-color: orange; */
    }
    
    .with-img {
        display: flex;
        align-items: center;
        justify-content: center;
        /* background-color: green; */
    }

    /* .heading-box {
        display: flex;
        justify-content: center;
    } */

}