*{
    box-sizing: border-box;
}
body{
    background-color: hsl(47, 88%, 63%);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.container{
    background-color: hsl(0, 0%, 100%);
    width: 384px;
    height: 524px;
    border: 1px solid;
    padding: 24px;
    border-radius: 20px;
    box-shadow: 8px 8px;
}
.article{
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 24px;
}
.learning{
    color: hsl(0, 0%, 7%);
    font-size: 14px;
    font-family: figtree;
    font-weight: 950;
    padding: 4px 12px;
    border-radius: 4px;
    background-color: hsl(47, 88%, 63%);
    display: inline;
}
.published{
    font-size: 14px;
    color: hsl(0, 0%, 7%);
    margin-top: 12px;
    font-family: figtree;
    font-weight: 500;
}
.heading{
    font-size: 24px;
    margin-top: 20px;
    color: hsl(0, 0%, 7%);
    font-family: figtree;
    font-weight: 950;
}
.paragraph{
    line-height: 150%;
    margin-top: 20px;
    color: hsl(0, 0%, 42%);
    font-family: figtree;
    font-weight:500;
}
.author{
    margin-top: 24px;
    margin-right: 12px;
    float: left;
    width: 32px;
}
.author-name{
    margin-top: 32px;
    font-size: 14px;
    color: hsl(0, 0%, 7%);
    font-family: figtree;
    font-weight: 950;
}
.heading:hover{
    color: hsl(47, 88%, 63%);;
}
@media screen and (max-width: 375px) {
  body {
    width: 327px;
    height: auto;
    padding: 20px;
  }
}