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

body {
  background-color: #f4d04e;
  max-width: 1440px;
  font-family: "Figtree", sans-serif;
  /* margin: 0 auto; */
}

.wrapper {
  display: flex;
  justify-content: center; /* Centers items horizontally */
  align-items: center; /* Centers items vertically */
  height: 100vh; /* Makes the wrapper full height of the viewport */
  margin-top: 156px;
}
.card .card-elements-wrapper {
  margin: 24px;
}
.card {
  border: 1px solid #111111;
  border-radius: 20px;
  box-shadow: 8px 8px;

  background-color: #fff;
  display: inline-block;
}

.card img {
  border-radius: 8px;
  display: block;
  /* margin-left: auto;
  margin-right: auto; */
  width: 100%;
}
.category {
  /* border: 1px solide; */
  border-radius: 8px;
  margin-top: 24px;
  margin-bottom: 12px;
  padding: 12px;
  background-color: #f4d04e;
  /* font-size: 1rem; */
  /* font-weight: 400; */
  width: 100px;
  height: 40px;
}

.category p {
  text-align: center;
  font-weight: bolder;
}

.title {
  font-size: 20px;
  font-weight: bolder;
  margin-top: 12px;
  margin-bottom: 12px;
}
.description {
  margin-bottom: 24px;
  font-size: 14px;
  color: #6b6b6b;
  width: 300px;
}
.author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author img {
  height: 32px;
  width: 32px;
}
