h2 {
    font-family: 'Quicksand', sans-serif;
    text-decoration: underline;
}

.une {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
}

.une h2 {
    text-align: center;
    width: 100%;
}

.article {
    display: block;
    width: 60%;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 8px;
    background-color: #9E5F8C;
    color: white;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.article:hover {
    transform: scale(1.02);
}

.source {
    text-align: center;
    font-style: italic;
    color: gray;
    margin: 40px 0 20px 0;
    font-size: 14px;
}

.source a {
    color: #9E5F8C;
    text-decoration: none;
    font-weight: bold;
}

.source a:hover {
    text-decoration: underline;
}