@import url('https://fonts.googleapis.com/css2?family=Chiron+Sung+HK:ital,wght@0,200..900;1,200..900&family=Figtree:ital,wght@0,300..900;1,300..900&family=Playwrite+IN&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Figtree;  
}
body{
    background-color: hsl(47, 88%, 63%);
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 110vh;
}
.container{
    width: 450px;
    padding: 20px;
    background-color: hsl(0, 0%, 100%);
    border: 2px solid hsl(0, 0%, 7%);
    box-shadow: 15px 15px 0 hsl(0, 0%, 7%);
    border-radius: 20px;
}
.article{
    width: 100%;
    height: 250px;
    border-radius: 10px;
    margin-bottom: 40px;
}
span{
    background-color: hsl(47, 88%, 63%);
    font-weight: bold;
    padding: 10px;
    font-size: 1.2em;
    border-radius: 10px;
    color: hsl(0, 0%, 7%);
}
p{
    font-size: 1em;
    color: black;
    margin-top: 20px;
    margin-bottom: 20px;
}
h2{
    font-size: 2em;
    font-weight: bolder;
    color:hsl(0, 0%, 7%);
}
.profile{
    display: flex;
    gap: 10px;
    align-items: center;
}
.profile-img{
    width: 50px;
    height: 50px;
}
h3{
    font-size: 1.2em;
    font-weight: bolder;
    color: hsl(0, 0%, 7%);
}