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

.container {
    max-width: 375px;
    margin: 0 auto;
    background: #EDEDED;
    border: solid 1px #EDEDED;
}

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

.logo {
    width: 127px;
}

.post {
    background: #FFF;
    margin-bottom: 30px;
}

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

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

.post-img {
    width: 100%;
}

.post-icon-btn {
    background: 0;
    border: 0;
    cursor: pointer;
}

.post-icon-btn:hover {
    opacity: 0.5;
}

.post-icon-btn-img {
    width: 25px;
}

.bold {
    font-weight: bold;
}

.post-controls, .post-meta {
    padding: 10px 10px 0;
}

.post-text {
    padding: 10px 0;
}