html,
body {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  background-color: #ededed;
  font-family: "Source Sans 3", sans-serif;
}

/* Typography */
.bold {
  font-weight: bold;
  font-size: 13px;
}

.location {
  font-size: 12px;
}

.location,
.logo,
.apic,
.after,
.caption {
  margin-left: 10px;
}
/* Layout */
.container,
.post {
  width: 375px;
  margin: 0 auto;
  background-color: #fff;
}

header,
.user-info {
  display: flex;
  align-items: center;
}
header {
  justify-content: space-between;
  border-bottom: 1px solid lightgrey;
  padding: 8px 0;
  margin: 10px 0 5px 0;
}

.logo {
  width: 100px;
}

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

/* post */
.post {
  margin-bottom: 25px;
  padding: 10px 0;
}
.post-img {
  width: 100%;
}

.user-info {
  justify-content: flex-start;
  margin: 0 0 11px 0px;
}
.user-info p,
.after p {
  margin: 0;
}

.caption {
  display: inline;
  font-size: 13px;
}
/* Icons*/
.icon-btn {
  border: none;
  background: none;
}

.icon {
  width: 18px;
  height: 18px;
  margin-top: 10px;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.icon:hover,
.icon:focus {
  opacity: 0.5;
}
