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

body {
  background-color: hsl(47, 88%, 63%);
  font-family: "Figtree", sans-serif;
  overflow-x: hidden;
}

.card-background {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px 20px 20px;
}
.recipe-card {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  width: 30rem;
  gap: 20px;
  padding: 24px;
  border-radius: 20px; /* Optional: adds rounded corners */
  box-shadow: 8px 8px 0px 0px rgba(0, 0, 0, 0.75);
}

.illustration {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.pills-date {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pills {
  background-color: hsl(47, 88%, 63%);
  width: 80px;
  text-align: center;
  font-weight: 800;
  padding: 6px;
  border-radius: 2px;
}

.blog-title {
  font-size: 1.5rem;
  font-weight: 800;
  text-decoration: none;
  color: #000;
}

.paragraph {
  font-size: 20px;
  line-height: 1.5;
  color: #555;
}

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

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.profile-name {
  font-weight: 800;
}

.blog-title:link,
.blog-title:visited {
  color: #000;
}

.blog-title:hover,
.blog-title:active {
  color: hsl(47, 88%, 63%);
}

@media (max-width: 375px) {
  .card-background {
    padding-top: 40px;
  }

  .paragraph {
    font-size: 16px;
  }
}
