body {
    display: flex;
    justify-content: center;
    height: 100vh;
    margin: 0;
}

.content-container {
    display: flex;
    width: 100%;
    margin-top: 100px;
    font-size: 0.9em;
    margin-bottom:20px;
    align-content: center;
}

.left, .right {
    flex: 1;
    display: flex;
    flex-direction: column;
}

a:hover{
    font-weight: 600;
}

.active {
    font-weight: 600;
}


/* Styles existants */
.competences {
    flex-basis: 60%;
    display: flex;
    gap: 20px;
    align-content: start;
    flex-direction: column;
    align-items: center;
}

.heart, .light, .paper {
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    gap: 10px;
    padding-bottom: 0px;
}

.img {
    width: 55px;
}

h3{
    font-size:1.4em;
}

.text {
    text-align: center;
}

.text-column {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.separator {
    height: 1px;
    width: 80%;
    background-color: #CCCCCC;
    margin: 20px auto; /
}

/* Ajout pour adaptation mobile */
@media (max-width: 1100px) {

    .paper{
        margin-bottom:20px;
    }
    .text-column {
        flex-direction: column;
        align-items: center;
    }

    .text-column .text {
        width: 100%;
        max-width: 300px;
    }


    .text-column {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 20px;
    }
}


@media (max-width: 1100px) {
    .left {
        display: none;
    }

    .right {
        display: flex;
        flex-direction:row;
        flex: 0;
        width: 100%;
        justify-content: center;
    }

    .content-container {
        display: flex;
        width: 80%;
        flex-direction: column-reverse;
        justify-content: flex-end;
        margin-top: 60px;
        align-items: center;
        gap: 20px;
        text-align:center;
    }

}
