:root {
  --yellow: hsl(47, 88%, 63%);
  --white: hsl(0, 0%, 100%);
  --gray-500: hsl(0, 0%, 42%);
  --gray-950: hsl(0, 0%, 7%);
  --primary-font: "Figtree",sans-serif;
  --preset-1: 24px;
  --preset-2:  16px;
  --preset-3: 14px;
}


*{
  box-sizing: border-box;
  margin: 0;
}
body{
  max-width: 1440px;
  height: 100dvh;
  font-family: var(--primary-font);
  background-color: var(--yellow);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  line-height: 150%;
  letter-spacing: 0;
}
.container{
  width: 384px;
  height: 522px;
  background-color: var(--white);
  border-radius: 20px;
  padding: 24px;
  margin: 25px;
  box-shadow: 10px 8px 0px 3px black, 1px 1px 0 2px black;
}
.container-image{
  width: 336px;
  height: 200px;
  border-radius: 10px;
  margin-bottom: 15px;
  object-fit: cover;
}
.learning-tag{
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  width: 82px;
  height: 29px;
  background-color: var(--yellow);
  margin-bottom: 10px ;
  font-size: var(--preset-3);
  color: var(--gray-950);
  font-weight: bold;
}
.date{
  color: var(--gray-950);
  font-size: var(--preset-3);
}
.title{
  color: var(--gray-950);
  font-size: var(--preset-1);
  margin-top: 10px;
  margin-bottom: 10px;
}
.title:hover{
  color: var(--yellow);
}
.description{
  color: var(--gray-500);
  font-size: var(--preset-2);
  margin-top: 5px;
  margin-bottom: 5px;
}
.container-author{
  
  display: flex;
  flex-direction: row;
  justify-content: left;
  font-size: var(--preset-3);
  font-weight: bold;
  color: var(--gray-950);
  gap: 8px;
  margin-top: 40px;
  
}
.author{
  display: flex;
  flex-direction: row;
  align-items: center;
}
.image-avatar{
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

