*{
    padding: 0;
    margin:0;
    box-sizing:border-box;
}

body{
    width: 100%;
    font-family: "Source Sans 3", serif;
    background: #EDEDED;
}

/* HEADER STYLING */

header{
    width: 100%!important;
    height: 67px;
    padding: 15px;
    background-color: #fff;
    border-bottom: 1px solid #C6C6C6;
}

header .header-container{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;

}

header .header-container .logo-container{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

header .header-container .logo-container img{
    width: 127px;

}

header .header-container .profile-img-container{
    display: flex;
    align-items: center;
    justify-content: center;
}

header .header-container .profile-img-container img{
    width: 35px;
    height: 35px;
    border-radius: 50%;
}

/* MAIN STYLING */

main{
    margin: auto;
    width: 375px;
}

.posts{
    width: 100%;
    margin-bottom: 25px;
    background: #fff;
}

.posts:last-child{
    margin-bottom: 0;
}

.posts .post-container{
    width: 100%;
    /* background: red; */

}

.posts .post-container .userprofile{
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 7px;
    /* background: red; */
}

.posts .post-container .userprofile .user-profile-img{
    display: flex;
    align-items: center;
    justify-content: center;
}

.posts .post-container .userprofile .user-profile-img img{
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.posts .post-container .userprofile .userdetails{
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    /* background: red; */
}

.posts .post-container .userprofile .userdetails .user-name{
    font-size: 0.8125rem;
    font-weight: 700;
}

.posts .post-container .userprofile .userdetails .user-location{
    font-size: 0.75rem;
}

.posts .post-container .post-picture{
    width: 375px;
    height: 375px;
}


.posts .post-container .post-picture img{
    width: inherit;
    height: inherit;
}

.posts .post-container .post-impressions{
    padding: 15px 10px;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}
.posts .post-container .post-impressions .icons{
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
}

.posts .post-container .post-impressions .likes-comments{
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 7px;
}

.posts .post-container .post-impressions .icons i{
    transition: all .2s ease-in-out;
    font-size: 24px;
    cursor: pointer;
}

.posts .post-container .post-impressions .icons i:hover{
    transform: scale(1.2);
}

.posts .post-container .post-impressions .likes{
    font-size: 0.8125rem;
}

.posts .post-container .post-impressions .comment{
    font-size: 0.8125rem;
}

.bold{
    font-weight: 700;
}
















img{
    width: 100px;
}