* {
    padding: 0;
    margin: 0;
    font-family: "Figtree", sans-serif;
    ;
}

body {
    background-color: hsl(47, 88%, 63%);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#container {
    background-color: hsl(0, 0%, 100%);
    padding: 20px;
    max-width: 290px;
    border: 1.5px solid black;
    border-radius: 18px;
    box-shadow: 10px 10px;
    margin: 25px;
}

#articleImg {
    width: 100%;
    border-radius: 12px;
}

h2 {
    font-size: 15px;
    font-weight: 700;
    background-color: hsl(47, 88%, 63%);
    display: inline-block;
    padding: 4.5px 15px;
    border-radius: 5px;
    margin-block: 13px;
}

#date {
    font-size: 14px;
    margin-bottom: 10px;
}

#heading {
    font-size: 21px;
    font-weight: 800;
    margin-bottom: 10px;
}

#heading:hover {
    color:hsl(47, 88%, 63%);
    cursor: pointer;
    transition: ease-in-out 0.5s;
}

#paragraph {
    font-size: 14px;
    font-weight: 500;
    color: hsl(0, 0%, 42%);
    margin-bottom: 20px;
}

#creator {
    display: flex;
    align-items: center;
}

#creator p {
    font-size: 14px;
    font-weight: 800;
}

#creator img {
    width: 35px;
    margin-right: 15px;
}

