@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Outfit:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Figtree';
  background-color: hsl(47, 88%, 63%);
  min-height: 100vh;
  display: grid;
  place-items: center;
  /* justify-self: center; */
}

.card {
  width: 280px;
  background-color: white;
  padding: 1em;
  display: grid;
  gap: 1em;
  border: 1px solid black;
  border-radius: 3%;
  box-shadow: 5px 5px 0 black;
  /* width: 20rem; */
}
.blog-img {
  width: 100%;
  border-radius: 3%;
}
.author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 1em;
}
button {
  font-weight: 600;
  font-size: 12px;
  border: none;
  background-color: hsl(47, 88%, 63%);
  padding: 5px 10px;
  border-radius: 3px;
}
.date-published {
  color: hsl(0, 0%, 7%);
  font-size: 12px;
  margin-top: 1em;
  margin-bottom: 1rem;
}
h4 {
  font-weight: 800;
  margin-bottom: 1rem;
}
.desc {
  font-size: 12px;
  color: hsl(0, 0%, 42%);
}

.author img {
  height: 2em;
}
.author .name {
  font-size: 12px;
  font-weight: 800;
}
