*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.post{
  width: 500px;
  margin: 20px auto;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(31, 31, 31, 0.5);
}
.header{
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.header img{
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 10px;
} 
.content img{
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}
#follow-btn{
  background-color: #313335;
  color: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  cursor: pointer;
  border: none;
  margin-left: 15px;
}
.content{
  margin-bottom: 20px;
} 
.footer{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#like-btn, #share-btn, #comment-btn, #post-comment-btn{
  background-color: #313335;
  color: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  margin-right: 10px;
  cursor: pointer;
  border: none;
}
#likes-count, #comments-count{
  font-size: 16px;
  color: #666;
}
#comments-section{
  margin-top: 20px;
} 
#comments-section input{
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 10px;
}
#post-comment-btn{
  margin-top: 20px;
}