#like-btn{
    background-color: transparent;
    border: none;
}

.blog-head{
    /* text-transform:uppercase; */
    text-align: center;
    text-shadow: 
        0 0 10px gray, /* Inner glow */
        0 0 20px gray, /* Outer glow */
        0 0 30px gray; /* Extended outer glow */
}
#blog-author{color: rgb(166, 0, 0);}
#blog-author.dark-mode{color: rgb(255, 255, 156);}
.blog-content{
    white-space: pre-wrap;
    line-height: 33px;
    font-size: 20px;
    width: 60%;
    background-color: blanchedalmond;
    border-radius: 5px;
    padding: 10px;
    color: black;
    word-spacing: 7px;
}
.blog-content.dark-mode{
    background-color: rgb(0, 83, 56);
    color: white;
}


@media(max-width:700px){
    .blog-content{
        font-size: 15px;
        line-height: 23px;
        width: 93%;
        word-spacing: 5px;
    }
}   