/* --- Typography --- */
html, body {
    font-family: "Source Sans 3", sans-serif;
    font-style: normal;
    margin: 0;
    padding: 0;
}
h2 {
    font-weight: 700;
    font-size: 14px;
    margin: 0;
}
p {
    font-weight: 400;
    font-size: 12px;
    margin: 0;
}
.likes,
.description{
    padding-left: 8px;
}
.likes,
.username {
    font-weight: bold;
    padding-bottom: 8px;
}

/* --- Images --- */
.main-logo {
    width: 120px;
    height: 50px;
}
.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
.post-img {
    width: 100%;
    height: auto;
}
.post-actions img {
    width: 25px;
    height: 25px;
    padding: 10px 3px 10px 8px;
}
.post-actions img:hover,
.post-actions img:focus {
    opacity: 50%;
}

/* --- Navigation/Header --- */
header {
    padding: 8px;
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2px;
}

/* --- Layout/Containers --- */
.container {
    width: 375px;
    margin: 0 auto;
    background-color: #EDEDED;
}
section {
    background-color: white;
    margin-bottom: 20px;
    padding-bottom: 10px;
}
.user-info {
    display: flex;
    align-items: center;
    padding: 10px 0px 10px 10px;
}
.user-details {
    padding-left: 5px;
}