*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@font-face {
    font-family: "Figtree";
    src: url(assets/fonts/Figtree-VariableFont_wght.ttf);
}
body{
    font-family: "Figtree";
    display: flex;
    height: 100vh;
    justify-content: center;
    align-items: center;
    background-color: hsl(47, 88%, 63%);
}
.container{
    background-color: #fff;
    height: auto;
    width: 90%;
    max-width: 400px;
    border-radius: 1rem;
    padding: 1.2rem;
    border: 1px solid black;
    box-shadow: 8px 10px;
}
.img-container{
    background-image: url(assets/images/illustration-article.svg);
    background-size: cover;
    background-position: center;
    height: 200px;
    border-radius: 1rem;
}
button{
    margin-top: 1rem;
    font-weight: 800;
    background-color: hsl(47, 88%, 63%);
    color: black;
    padding: 0.5rem;
    border-radius: 0.3rem;;
    border: none;
}
.content p{
    font-size: 1rem;
    color:hsl(0, 0%, 42%);
}
.date p{
    color: hsl(0, 0%, 7%);
}
.date{
    margin-top: 1rem;
}
.title{
    margin-top: 1.3rem;
    font-weight: 800;
    font-size: 1.75rem;
}
.title:active{
    color: hsl(47, 88%, 63%);
}
.content{
    margin-top: 1rem;
    font-size: 1.2rem;
    line-height: 1.5rem;
}
.signature{
    margin-top: 1rem;
    display:flex;   
    align-items: center;
}
.signature p{
    font-weight: 600;
}
.avatar{
    height: 35px;
    width: 35px;
    background-size: cover;
    background-position: center;
    background-image: url(assets/images/image-avatar.webp);
    margin-right: 1rem;
}
@media (max-width: 375px) {
  .container {
    padding: 1rem;
  }

  .title {
    font-size: 22px;
  }

  .content {
    font-size: 1rem;
  }

  .signature p {
    font-size: 14px;
  }

  button {
    font-size: 14px;
    padding: 0.4rem 0.8rem;
  }
}
