body{
    background-color: lightblue;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    
}

.container{
    position: relative;
    width: 100%;
    max-width: 1000px;
    min-height: 1000px;
    background-color: #fff;
    margin: 50px;
    display:grid;
    grid-template-columns:1fr 2fr;
    box-shadow: 0 35px 55px rgba(0,0,0,0.1);
}

.container .coté_gauche{
    position: relative;
    background-color: #103e53;
    padding: 40px;
}

.nom-prenom{
    text-align: center;
    color: aliceblue;
}

.avatar{
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto; /* Center horizontally */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.avatar img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    
}

.sectionContact, .sectionCompétence{
    margin-top:20px;
    color:aliceblue;
    text-align: center;
    list-style-type: none;
    font-family: Arial, Helvetica, sans-serif;
}

.sectionContact h3, .sectionCompétence h3{
    font-size:16px;
    margin-bottom:10px;
    text-transform:uppercase;
    border-bottom:1px solid lightblue;
    padding-bottom:5px;
}

.sectionContact ul, .sectionCompétence ul, .sectionlangue ul{
    padding:10px;
    margin:0px;
}

.sectionContact li, .sectionCompétence li, .sectionlangue li{
    
    list-style-type: none;
    margin-bottom:6px;
    font-size:14px;
}
h3{
    color: rgb(87, 193, 228);
}

.sectionlangue h3{
    text-transform:uppercase;
    border-bottom:1px solid lightblue;
    padding-bottom:5px;
}

.sectionlangue{
    text-align: center;
    font-size:16px;
    margin-bottom:10px;
    color: aliceblue;
    font-family: Arial, Helvetica, sans-serif;
}

.sectionlangue .pourcent{
    position: relative;
    width: 100%;
    height: 6px;
    background: #03a8f421;
    display: block;
    margin-top: 5px;
}

.sectionlangue .pourcent div{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #03a9f4;
}

.langueTexte{
    text-align: center;
}

.container .coté_droit{
    position: relative;
    background-color: #fff;
    padding: 40px;
    font-family: Arial, Helvetica, sans-serif;
}


.coté_droit h2 {
    font-size: 26px;
    color: #103e53;
    margin-bottom: 20px;
    text-transform: uppercase;
    border-bottom: 2px solid #03a9f4;
    padding-bottom: 10px;
}

.coté_droit h3 {
    font-size: 18px;
    color: #0d5c7d;
    margin-bottom: 10px;
    text-transform: none;
}

.experience {
    margin-bottom: 25px;
}


.coté_droit ul {
    list-style: disc;
    padding-left: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
}


.coté_droit ul li {
    font-size: 15px;
    margin-bottom: 8px;
    line-height: 1.5;
}


ul.carré {
    list-style-type: square;
    padding-left: 20px;
    margin-top: 5px;
}


.coté_droit a {
    color: #03a9f4;
    text-decoration: none;
    font-weight: bold;
}

.coté_droit a:hover {
    text-decoration: underline;
}


.footer {
  position: absolute;
  bottom: 5px;
  right: 10px;
  font-size: 16px;
}

.footer a {
  text-decoration: none;
  color: gray;
}

.footer a:hover {
  text-decoration: underline;
  color: #0077cc;
}





