@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;
    box-sizing: border-box;
}

body {
    background-color: hsl(47, 88%, 63%);
    font-family: "Outfit", sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    font-size: 15px;
    padding: 0 1rem;
        

}

.container {
    max-width: 360px;
    margin: auto;
}

.container img {
    width: 100%;
    border-radius: 17px;
    margin-bottom: 1.5rem;
}

.card {
    background-color: hsl(0, 0%, 100%);
    padding: 1.2rem;
    border-radius: 13px;
    border: solid 2px black;
    box-shadow: 10px 10px 15px black;
    margin: 0 1rem;
}   

.learning {
    background-color : hsl(47, 88%, 63%);
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 0.8rem;
        
}

.date {
    margin-bottom: 1rem;

}

.title {
    margin-bottom: 1rem;
}

.caption {
    color: hsl(0, 0%, 42%);
}

.profile {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 1rem;
    }

.profile img {
    width: 30px;
    border-radius: 50%;
    margin-bottom: 0;
}

.name {
    font-weight: 700;  
    font-size: 14px;
}