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

html {
  font-size: 62.5%;
}

body {
  font-family: "Figtree", sans-serif;
  color: hsl(0, 0%, 7%);
}

.container {
  margin: 0 auto;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: hsl(47, 88%, 63%);
}

.flex {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.blog-card {
  max-width: 37.5rem;
  background-color: hsl(0, 0%, 100%);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid hsl(0, 0%, 7%);
  box-shadow: 7px 7px 0px 0px hsl(0, 0%, 7%);
}

.blog-img {
  border-radius: 20px;
  margin-bottom: 2.4rem;
}

.blog-tag {
  font-size: 1.4rem;
  font-weight: 800;
  background-color: hsl(47, 88%, 63%);
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  margin-bottom: 1.6rem;
}

.publish-date {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 1.8rem;
}

.article-link:link,
.article-link:visited {
  text-decoration: none;
  color: inherit;
}

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

.article-title {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 1.6rem;
}

.article-description {
  font-size: 1.6rem;
  color: hsl(0, 0%, 42%);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-image {
  height: 3rem;
  width: 3rem;
}

.author {
  font-size: 1.4rem;
  font-weight: 800;
}
