#Partie1 {
    display: flex;
    align-items: center;
    height: 100vh;
    background-color: rgba(248, 248, 248, 0.699);
    width: 100%;
}

.TitreSection {
    text-align: center;
    font-size: 50px;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    margin-top: 50px;
    margin-bottom: 20px;
}

.block1 {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.ALLrea {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 30px;
}

.epreuve {
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    padding: 20px;
    width: 35%;
}

.epreuve:hover {
    transform: scale(1.05);
    z-index: 1;
    border-color: #459fff;
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.2);
}

.epreuve h2 {
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    margin-bottom: 50px;
    text-align: center;
}

.bouton {
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #fff;
    background-color: #87a7d1;
    border: none;
    border-radius: 50px;
    transition: 1000ms;
    cursor: pointer;
    padding: 15px 15px;
}

.bouton:hover {
    padding: 15px 25px;
    background-color: #fff;
    color: #87a7d1;
    box-shadow: 0 0 0 2px #87a7d1;
}

.allBTN {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    width: 100%;
}