body {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-size: 13px;
    background-color: lightgray;
}

.container {
    width: 375px;
    margin: 10px auto;
    background-color: white;
    border: 5px solid black;
    border-radius: 20px;
}

.logo {
    width: 110px;
}

.user-avatar, .poster-avatar {
    height: 34px;
    border-radius: 50%;
}

header, .header-post, .icons {
    display: flex;
    flex-direction: row;
}

header {
    justify-content: space-between;
    align-items: center;
    padding: 5px 10px 10px 10px;
    border-bottom: 1px solid #C6C6C6;
}

.header-post {
    justify-content:left;
    align-items: center;
    padding: 8px;
}

.poster-avatar {
    padding-right: 5px;
}

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

.poster-location {
    font-size: 12px;
    font-weight: 500;
    margin-top: 0;
}

.main-photo {
    width: 375px;
}

p {
    margin-top: 4px;
}

.icons {
    justify-content:left;
    align-items: center;
    margin-bottom: 2px;
}

.icon-heart, .icon-share, .icon-comment {
    padding: 8px;
    margin-left: 0;
}

.icon-heart {
    height: 24px;
}

.icon-heart:hover {
    transform: scale(0.9);
    transition: transform 0.2s ease;
}

.icon-share, .icon-comment {
    height: 22px;
}

.likes {
    font-weight: bold;
    margin-bottom: 4px;
}

.icons, .likes {
    user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.total-likes, .caption {
    padding: 4px 4px 4px 12px;
}

.poster-username {  
    font-weight: bold;
    padding-right: 4px;
}

.divider {
    border-bottom: 20px solid #C6C6C6;
}

.liked {
    fill: red;
    stroke: red;
}