body {
  background-color: hsl(47, 88%, 63%);
  width: 100%;
  font-family: "Figtree", serif;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  min-height: 100vh;
}

.card {
  background-color: hsl(0, 0%, 100%);
  width: 320px;
  border-radius: 15px;
  border: solid;
  border-width: 1px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  box-shadow: 5px 5px;
}

.illustration-image {
  width: 100%;
  border-radius: 10px;
}

.learning-button {
  width: 69px;
  height: 26px;
  margin-top: 16px;
  background-color: hsl(47, 88%, 63%);
  border: none;
  border-radius: 3px;
  font-weight: bold;
}

.publishing {
  font-size: 13px;
  color: hsl(0, 0%, 7%);
  margin-top: 10px;
}

.heading:hover {
  cursor: pointer;
  color: hsl(47, 88%, 63%);
}

.description {
  color:  hsl(0, 0%, 42%);
  font-size: 17px;
  margin-top: 15px;
}

.author {
  display: flex;
}

.profile-pic {
  height: 29px;
  width: 29px;
  margin-top: 11px;
  margin-right: 6px;
}

.author-name {
  font-weight: bold;
  font-size: 12px;
  margin-top: 18px;
}