@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@400;700&display=swap');

body {
  font-family: 'Figtree', sans-serif;
  margin: 20px;
  background-color: #F4D04E;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.card {
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
  margin: 20px 0;
  max-width: 384px;
  padding: 24px;
  margin: auto;
  display: flex;
  flex-direction: column;
  border: 1px solid #111111;
  box-shadow: 8px 8px 0px 0px #111111;
}

.card__img {
  width: 100%;
  display: block;
  border-radius: 10px;
  display: flex;
  margin-bottom: 24px;
}

.card__tag {
  background-color: #F4D04E;
  width: min-content;
  border-radius: 4px;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0px;
  font-weight: 800;
  padding: 4px 12px;
  margin-bottom: 12px;
}

.card__title {
  font-size: 24px;
  line-height: 150%;
  letter-spacing: 0px;
  font-weight: 800;
  color: #333;
  margin-bottom: 12px;
}

.card__title:hover{
  color: #F4D04E;
}

.card__description {
  font-size: 16px;
  letter-spacing: 0px;
  color: #6B6B6B;
  line-height: 150%;
  font-weight: 500;
  margin-bottom: 24px;
}

.card__author {
  display: flex;
  align-items: center;
}

.card__author--avatar {
  border-radius: 50%;
  width: 32px;
  height: 32px;
  margin-right: 12px;
}

.card__author--name {
  font-size:  14px;
  line-height: 150%;
  letter-spacing: 0px;
  color: #111111;
  font-weight: 800;
}

.card__date {
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0px;
  color: #111111;
  margin-bottom: 12px;
}

.attribution { 
  position: fixed;
  padding: 10px;
  bottom: 0;
  font-size: 11px; text-align: center; }
.attribution a { color: hsl(228, 45%, 44%); }