body{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: hsl(47, 88%, 63%);
    margin: 0;
    height: 100vh;
    font-family: 'Figtree', sans-serif;
}

.card{
    background-color: hsl(0, 0%, 100%);
    max-width: 350px;
    width: 90%;
    height: auto;
    border-radius: 10px;
    text-align: left;
    padding: 15px;
    border: 1px solid black;
    box-shadow: 10px 10px 0px rgba(0, 0, 0, 1);
}

.illustration{
    border-radius: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.type{
    display: inline-block;
    padding: 5px;
    background-color: hsl(47, 88%, 63%);
    border-radius: 5px;
    font-weight: bold;
}

.date{
    margin-top: 0px;
    color: hsl(0, 0%, 7%);
}

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

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

.profil-picture{
    height: 30px;
}

.attribution{
    position: fixed;
    bottom: 0;
    font-size: 15px;
    padding: 10px;
}