/* .BlocPresentation {
    display: flex;
    justify-content: center;
    background-color: blanchedalmond;
    width: 100%;
    height: 40vh;
}

.presentation {
    display: flex;
    font-size: 20px;
    margin-top: 8%;
}

h1 {
    display: block;
    border-bottom: 2px solid black;
}

.quiJeSuis {
    display: flexbox;
}

.ongletQuiJeSuis {
    display: none;
}

#etudiant {
    display: block;
}

.compEtExp{
    display: none;
}

#competence {
    display: block;
} */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f9f9f9;
    color: #333; 
    line-height: 1.6;
    padding: 20px;
}

h1, h2 {
    text-align: center;
    color: #222;
}

button {
    cursor: pointer;
    padding: 10px 20px;
    font-size: 16px;
    border: 2px solid #444;
    border-radius: 5px;
    background-color: white;
    color: #444;
    transition: background-color 0.3s, color 0.3s;
}

button:hover {
    background-color: #444;
    color: white;
}

/* ---- Section : Présentation ---- */
.BlocPresentation {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffe4c4;
    width: 100%;
    height: 40vh;
    margin-bottom: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.presentation {
    font-size: 1.2rem;
    text-align: center;
}

/* ---- Section : Qui suis-je ---- */
.quiJeSuis {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 40px auto;
}

.barQuiJeSuis {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.ongletQuiJeSuis {
    display: none;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    text-align: left;
}

#etudiant {
    display: block;
}


/* ---- Section : Compétences et expériences ---- */
.competencesEtExperience {
    text-align: center;
    margin: 40px auto;
}

.barCompetence {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.compEtExp {
    display: none;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 20px auto;
    text-align: left;
}

#competence {
    display: block;
}


.navBar {
    display: flex;
    background-color: rgb(38, 76, 109);
    flex-direction: row;
    justify-content: center;
    border-radius: 10px;
}

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

li {
    display: flex;
    margin-right: 30px;
}