.content-page h1 {
    margin-top: 90px;
    margin-bottom: 70px;
    text-align: center;
    color: #ED6C53;
    font-family: "Kalam", Sans-serif;
    font-size: 3rem;
}

.projet-archive {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.projet-item {
    width: 32%;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
    padding: 30px;
    margin: 25px 0;
}

.projet-item h3 {
    font-size: 25px;
    text-align: center;
    color: var(--bleu);
}

.projet-item__img {
    margin: 20px 0;
}

.projet-item__img img {
    border-radius: 10px;
}

.projet-item__infos {
    display: flex;
    justify-content: space-between;
}

.projet-item__infos p {
    line-height: normal;
    margin-bottom: 10px;
    font-size: 16px;
}

.projet-item__infos p:first-child {
    color: var(--orange);
    font-weight: bold;
}

.projet-item__infos p:last-child {
    color: var(--grey);
}

.projet-item p {
    font-size: 18px;
}

.projet-item__button {
    text-align: center;
}

/* Pagination navigation */ 

.pagination {
    text-align: center;
    margin-top: 40px;
}

.nav-links .page-numbers {
    padding: 10px 15px;
    background-color: transparent;
    border: solid 1px var(--orange);
    border-radius: 5px;
    color: var(--orange);
    margin: 0 10px;
}

.nav-links .current, .page-numbers:hover {
    background-color: var(--orange);
    color: white;
}

.nav-links .next, .nav-links .prev {
    display: none;
}

@media screen and (max-width: 950px) {
    .projet-archive {
        flex-direction: column;
        margin: 0 5%;
    }

    .projet-item {
        width: 100%;
    }

    .content-page h1 {
        margin-top: 150px;
        margin-bottom: 40px;
    }
}