body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.post {
    width: 400px;
    background-color: whitesmoke;
    border: 1px solid #000000;
    border-radius: 15px;
    margin-bottom: 20px;
}

.post-header {
    display: flex;
    align-items: center;
    padding: 10px;
}

.profile-pic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.username {
    font-weight: bold;
}

.post-image {
    width: 100%;
}

.post-actions {
    display: flex;
    justify-content: space-around;
    padding: 10px;
}

.post-actions button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.post-likes, .post-comments {
    padding: 10px;
}

.comment-input {
    width: 100%;
    padding: 5px;
    border: 1px solid #dbdbdb;
    border-radius: 3px;
}
.like-btn :hover{
    color: red;
}
