.header {
  background-color: rgb(66, 44, 26);
  padding: 10px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-img {
  max-width: 100px;
}
.header-title {
  color: bisque;
  font-size: 40px;
}
.header-link {
  color: bisque;
  font-size: 20px;
}
.link-wr {
  display: flex;
  gap: 10px;
  align-items: center;
}
.posts {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 600px;
  margin: 50px auto;
}
.post-card {
  background-color: blanchedalmond;
  padding: 100px 80px;
  background-image: url("https://i.pinimg.com/736x/af/38/27/af3827bfa5b6f6a2f6aa3b178b423e43.jpg");
  background-size: cover;
  background-position: center;
  height: 500px;
}
.user-title {
  font-size: 30px;
}
.user-body {
  font-size: 17px;
  margin-bottom: 20px;
}
.user-comments {
  display: flex;
  margin: 20px 400px;
}
.user-comments-img {
  max-width: 30px;
}
.user-link {
  color: rgba(52, 33, 33, 0.728);
}
