* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

.card {
  background-color: hsl(0, 0%, 100%);
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  max-width: 360px;
  margin: 20px;
  padding: 20px;
}

.cover {
  border-radius: 10px;
  height: 200px;
  margin-bottom: 20px;
  object-fit: cover;
  width: 100%;
}

.topic {
  background-color: hsl(47, 88%, 63%);
  padding: 5px;
  border-radius: 5px;
  font-weight: 800;

}

.publish {
  font-size: 0.85rem;
  margin-top: 20px;
}

.title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-top: 20px;
}
.title:hover {
  color: hsl(47, 88%, 63%);
  cursor: pointer;
  transition: color 0.3s ease;
}

.desc {
  font-size: 1rem;
  font-weight: 500;
  margin-top: 20px;
  color: hsl(0, 0%, 42%);
}

.author-info {
  display: flex;
  flex-direction: row;
  margin-top: 20px;

}
.author-info p {
  margin-left: 10px;
  align-self: center;
  font-weight: 800;
}





