html, body {
    margin: 0;
    padding: 0;
    background: lightgrey;
    font-family: "Source Sans 3", sans-serif;
}

p {
    font-size: 12px;
}

.bold {
    font-weight: bold;
}

.main-container {
    width: 375px;
    margin: 0 auto;
}

.post-container {
    margin-bottom: 20px;
    background: white;
}

.top-header-container {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #C6C6C6;
    background: white;
}

.post-header-container {
    padding: 10px;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px
}

.profile-img {
    height: 35px;
    border-radius: 50px;
}

.profile-name,
.location-name {
    margin: 0 0 0 10px;
}

.profile-name {
    font-size: 13px;
}

.post-img {
    width: 375px;
}

.post-interactions-container {
    padding: 10px;
}

.interactions-btns-container {
    padding: 10px 0;
}

.interaction-btn {
    border: none;
    background: #FFF;
    padding: 0;
    margin-right: 10px;
}

.interaction-icon {
    height: 25px;
    width: 25px;
}

.interaction-btn:hover,
.interaction-btn:focus {
   opacity: 50%;
   cursor: pointer;
}

.likes-text {
    margin: 10px 0;
}

.comment-text {
    margin-bottom: 0;
}