
@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@500;800&display=swap');


*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: var(--ff-Figtree);
}


:root{
--Yellow: hsl(47, 88%, 63%);
--White: hsl(0, 0%, 100%);
--Gray-500: hsl(0, 0%, 42%);
--Gray-950: hsl(0, 0%, 7%);

--ff-Figtree: "Figtree", sans-serif;

--font-weight-bold: 800;
--fw-500: 500;

--fs-p: 16px;

}

body {
    background-color: var(--Yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(100vh - 1px);
}

.illustration {
    width: 100%;
    border-radius: 12px;
}

.container {
    background-color: var(--White);
    padding: 24px;
    line-height: 34px;
    border: 2px solid var(--Gray-950);
    border-radius: 12px;
    box-shadow: 7px 7px 0px var(--Gray-950);

}

@media (min-width: 400px) {
    .container {
        width: 400px;
    }
}

button{
    background-color: var(--Yellow);
    border: none;
    padding: 5px 10px 5px 10px ;
    font-weight: 800;
    border-radius: 4px;
    font-size: 16px;
    margin: 10px 0 10px 0;

}

#date{
    font-weight: 500;
    margin-bottom: 3px;
}


h1{
    font-size: 25px;
    margin-bottom: 16px;
}

h1:hover{
    color: var(--Yellow);
}



p{
    font-size: 16px;
    p {
        font-size: var(--fs-p);

    }

}

#blog-entry {
    line-height: 25px;
    color: var(--Gray-500);
    margin-bottom: 16px;
}


.publisher {
    
    font-weight: var(--font-weight-bold) !important;
}

.profile{
    display: flex;
    align-items: center;
    gap: 10px;
}

.p-p{
    width: 30px;
    height: 30px;
}






