body {
  background: #f2f2f2;
}

#feed {
  position: relative;
  width: 80%;
  margin: 0 auto;
  display: table;
}
@media only screen and (max-width: 600px) {
  #feed{
    width: 100%;
  }
}
#feed .item {
  position: relative;
  width: 100%;
  margin: 75px auto;
  border-radius: 3px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 0 0 1px #e6e6e6;
}
#feed .item .header-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  clip: rect(0, auto, auto, 0);
}
#feed .item .header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: #fff;
  z-index: 1;
  box-shadow: 0 1px #e6e6e6;
}
#feed .item .header .avatar {
  float: left;
  width: 30px;
  height: 30px;
  margin: 10px;
}
#feed .item .header .username {
  float: left;
  height: 10px;
  margin: 20px 20px 20px 0;
}
#feed .item .photo {
  position: relative;
  margin: 50px auto 0;
  background: #dceffd;
}
#feed .item .content {
  position: relative;
  padding: 10px;
  display: table;
}
#feed .item .content .likes {
  cursor: pointer;
  width: 50px;
  height: 10px;
  margin-bottom: 10px;
  border-radius: 3px;
}
#feed .item .content .comments li {
  margin: 5px 0 0;
  display: block;
}
#feed .item .content .comments li .name {
  cursor: pointer;
  width: 75px;
  height: 10px;
  max-width: 100%;
  margin-right: 5px;
  display: inline-block;
  color: #32a0f5;
}
#feed .item .content .comments li .comment {
  height: 10px;
  max-width: 100%;
  border-radius: 3px;
  display: inline-block;
}
