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

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

p {
  font-size: 16px;
}

.center {
  width: 100%;
  max-width: 375px;
}

.card {
  background-color: hsl(0, 0%, 100%);
  border-radius: 20px;
  padding: 20px;
  text-align: left;
  border: 1px solid hsl(0, 0%, 7%);
  box-shadow: 8px 8px 0 hsl(0, 0%, 7%);
}

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

.tag {
  display: inline-block;
  padding: 5px 5px;
  border-radius: 3px;
  font-size: 15px;
  font-weight: bold;
  background-color: hsl(47, 88%, 63%);
  margin-bottom: 10px;
}

.card p {
  font-weight: 500;
  margin-bottom: 20px;
}

.published {
  font-size: 14px;
  font-weight: bold;
}

.card h1 {
  font-weight: 900;
  margin-bottom: 20px;
}

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

.description {
  color: hsl(0, 0%, 42%);
  line-height: 1.5;
}

.user-profile {
  display: flex;
  align-items: center;
  gap: 10px;
}

.user-profile img {
  width: 10%;
  height: 10%;
  margin-bottom: 0px;
}

.user-profile p {
  font-weight: bold;
  margin-bottom: 0px;
}
