@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Outfit:wght@100..900&display=swap');

:root{
    --Yellow: hsl(47, 88%, 63%);
    --White: hsl(0, 0%, 100%);
    --Gray_500: hsl(0, 0%, 42%);
    --Gray_950: hsl(0, 0%, 7%);

}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    background-color: var(--Yellow);

    font-size: 16px;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    height: 100vh;

}

.card{
    border: 1.5px solid hsl(0, 0%, 7%);
    width: 380px;
    height: 550px;
    background-color: var(--White);
    border-radius: 22px;
    padding: 22px;
    box-shadow: 8px 8px 0 var(--Gray_950);

}

.image_article{
    display: block;
    width: 100%;
    border-radius: 12px;
}

ul{
    list-style-type: none;
    
}

ul li:first-child{
    background-color: var(--Yellow);
    margin-top: 12px;
    padding: 7px;
    width: 95px;
    font-weight: 800;
    border-radius: 5px;
    display: flex;
    justify-content: center;
}

li{
    margin-bottom: 22px;
}

.attribution{
    font-size: 12px;
    position: fixed;
    bottom: 10px;
    text-align: center;
    word-spacing: 10px;
}

span{
    font-weight: 800;
    font-size: 25px;
}

span:hover{
    color: var(--Yellow);
    cursor: pointer;
}

p{
    color:var(--Gray_500)
}

.auteur{
    font-weight: 800;
    display: flex;
    justify-content: left;
    align-items: center;
    gap:10px
}

.auteur img{
    height: 40px;
}