html, body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

body {
    display: flex;
    flex-direction: column;
    width: 23rem;
    font-family: "Source Sans 3", "sans-serif;"
}

header {
    display: flex;
    justify-content: space-between;
    border-bottom: solid 1.2px #C6C6C6;
    height: 4.2rem;
}

.avatar{
    height: 2rem;
    width: 2rem;
    border-radius: 50%;
    align-self: center;
    margin-right: 1em;
}

.logo{
    margin-left: 0.9375em;
}

.post-avatar{
    width: 34px;
    height: 34px;
    border-radius: 50%;
    margin: 10px 0 11px 10px;
}

main {
    display: flex;
    flex-direction: column;
}

.profile{
    display: flex;
}

.full-name{
    font-weight: bold;
    font-size: 13px;
    margin: 0;
}

.location{
    font-size: 12px;
    margin: 0
}

.user-div{
    align-self: center;
    margin-left: 7px;
}

.post-img{
    width: 100%;
    height: 375px;
}

.icon{
    width: 22px;
    height: 23px;
}

.interactions{
    display: flex;
    gap: 10px;
    margin-left: 10px;
    margin-top: 5px 
}

p{
    margin: 0;
    padding: 0;
}

.post-info{
    margin-left: 13px;
    margin-top: 8px;
    font-size: 13px;
}

.bold{
    font-weight: bold;
}

.desc{
    display: flex;
    gap: 5px;
    margin-top: 5px;
    margin-bottom: 5px
}

.icon:hover{
    opacity: 0.6;
}