@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Outfit:wght@100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: Figtree;
}

body {
    height: 100vh;
    background-color: hsl(47, 88%, 63%);

    display: flex;
    justify-content: center;
    align-items: center;
}

.card {
    background-color: hsl(0, 0%, 100%);
    padding: 20px;
    border: solid black 1px;
    box-shadow: 5px 6px 1px black;
    border-radius: 15px;

    box-sizing: content-box;
    width: 250px;
}

.card #img1 {
    width: 250px;
    border-radius: 15px;

    margin-bottom: 10px;
}

.card .learning {
    background-color: hsl(47, 88%, 63%);
    padding: 5px;

    display: inline-block;
    border-radius: 5px;
    font-weight: 800;
    font-size: 12px;
    
    margin-bottom: 10px;
}

.card .date {
    font-size: 12px;
    margin-bottom: 10px;
    color: hsl(0, 0%, 7%);
}

.card .title {
    font-weight: 800;
    margin-bottom: 10px;

    font-size: 18px;
}

.card .title:hover {
    color: hsl(47, 88%, 63%);
    cursor:pointer;
}

.card .paragraph {
    color: hsl(0, 0%, 42%);
    font-size: 12px;
    line-height: 18px;

    margin-bottom: 10px;
}

.userInfo {
    display: flex;
    align-items: center;

    font-weight: 800;
    font-size: 12px;
}

.userInfo #img2 {
    width: 30px;
    margin-right: 10px;
}
