@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,800;1,100;1,300;1,400;1,900&display=swap');

.container{
    padding: 20px;
}
body{
}

.post{
    margin-right: 10px;
    margin-bottom: 10px;

    display: flex;
    padding: 10px;
    border-radius: 10px;
    flex-direction: column;
    color: rgb(0, 0, 0);
        
}

.post p{
    padding-bottom: 15px;
    font-size: large;
    color: black;
    font-family: Arial, Helvetica, sans-serif;
}
.post p span{

    font-weight: 600;

}
.blog_container{
    display: flex;
    flex: content;
}
.other_blog{
    border-radius: 5px;
    width: 30%;
    border: black 1px solid;

}
.other_blog h3{
    padding-left: 10px;
}
.other-post{
    margin: 10px;
    color: aliceblue;
}
.other-post img{
    width: 100%;
}
.other-post a{
    color: aliceblue;
}
.nk{
    background-color: black;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 10px;
}
#blog-image{
 
    border-radius: 10px;
    margin-bottom: 20px;
    height: 400px;
    width: 100%;
      z-index: 999;
      
    
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}
#blog-title{
    padding-left: 10px;
    color: aliceblue;
    
}
.bottom-info{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: end;
}
.activity{
    width: 100%;
    
    justify-content: space-between;
    display: flex;
    align-items: center;
    height: 30%;
    
    background: rgba(0, 0, 0, 0.52);
border-radius: 16px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(8.5px);
-webkit-backdrop-filter: blur(8.5px);
border: 1px solid rgba(0, 0, 0, 0.3);

}
.reaction{
    color:white;
    display: flex;
    
    justify-content: space-between;
    /* From https://css.glass */


}
.view, .like{
    padding-right: 40px;

text-align: center;
}
.fa-regular:hover{
    color: red;
}
.other_blog{
    width: 30%;
}
.post img{
    width: 80%;
}
.other-post{
    flex-wrap: wrap;
}
@media screen and (max-width: 600px) {
    .view, .like{
        padding-right: 20px;
    
    text-align: center;
    }
    .blog_container{
        display: block;
    }
    .other_blog{
        width: 100%;
    }
    .other-post{
        flex-wrap: wrap;
    }
    #blog-title{
        font-size: 15px;
    }
    .post img{
        width: 80%;
    }
    .container{
        padding: 0px;
    }
    .activity{
        border-radius: 0px;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;

    }
    .post{
        margin-right: auto;
    }
    
}