/*Figtree 500*/
@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Lexend+Deca:wght@500&display=swap');

/*Figtree 800*/
@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Lexend+Deca:wght@800&display=swap');
*{
    margin: 0%;
    padding: 0%;
}

html,body{
    width: 100%;
    height: 100%;
    background: hsl(47, 88%, 63%);
    display: flex;
    justify-content: center; /*Center item horizontaly*/
    align-items: center; /*Center item vertically*/
}
.box{
    background: hsl(0, 0%, 100%);
    height: auto;
    width: 22rem;
    padding: 20px;
    box-sizing: border-box; /*pading will not overflow*/
    overflow: hidden;
    border-radius: 15px;
    border: solid 1px;
    box-shadow: 8px 8px 0px 0px black;
}

#bigImg img{
    width: 100%;
    border-radius: 10px;
}

#learning{
    margin: 15px 0;
    width: 5.5rem;
    height: 1.7rem;
    background: hsl(47, 88%, 63%);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#published{
    margin-bottom: 15px;
    font-family: Figtree;
    font-weight: 500;
    font-size: 14px;
}

h1{
    margin: 15px 0;
    font-family: Figtree;
    font-weight: 800;
    font-size: 22px;
}

#paragraph{
    margin: 15px 0;
    margin-right: 10px;
    font-family: Figtree;
    font-weight: 500;
    font-size: 16px;
    color:hsl(0, 0%, 42%);
}

.name{
    margin: 20px 0 0 0;
    display: flex;
    align-items: center;
}
.name img{
    width: 35px;
}
.name h2{
    margin: 0 15px;
    font-family: Figtree;
    font-weight: 800;
    font-size: 15px;
}