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

.Bilan h2 {
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    margin: 0;
}

h3 {
    font-size: 19px;
    margin: 0px;
    font-weight: 200;
    color: black;
    line-height: 30px;
}


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

.Bilan {
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
}

.block1,
.block2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
    width: 40%;

}

.techniques {
    background-color: rgb(255, 255, 255);
    min-width: 50%;
    text-align: center;
    padding: 15px 0px;
}

.softskills {
    background-color: rgb(255, 255, 255);
    min-width: 50%;
    text-align: center;
    padding: 15px 0px;
}

.avenir {
    background-color: rgb(255, 255, 255);
    padding: 15px;
    text-align: center;
}

.aimer {
    background-color: rgb(255, 255, 255);
    padding: 15px;
    text-align: center;
}

/* Effet de zoom au survol */
.Techniques,
.softskills,
.aimer,
.avenir {
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
}

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

/* Pour éviter les problèmes de débordement */
.container {
    overflow: hidden;
}

@media (max-width: 480px) {
    .Bilan {
        flex-direction: column;
    }

    #Partie1 {
        height: auto;
        padding-bottom: 50px;
    }

    .block1,
    .block2 {
        width: 90%;
    }
}