.artistes-article p{
    margin: 1em 0.3em 0 0.3em;
    text-align: center;
    font-size: 1.1em
}

.artistes-container{
    margin: 2em;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1em;
}

.artistes-item{
    margin-top: 1.9em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: center;
}

.artistes-item img{
    width: 120px;
    height: 120px;
    margin: 0;
    border-radius: 10px;
    transition: all ease-in-out 0.2s;
}

.artistes-item h3{
    font-size: 1.2em;
    margin-top: 0.7em;
    font-family: 'OldNewspaperTypes', serif;
}

.artistes-item p{
    font-size: 0.8em;
    margin-top: 0.1em;
    max-width: 85%;
    text-align: center;
}

.artistes-item img:hover{
    transform: scale(1.05);
}