*{
    margin: 0;
    padding: 0;
    /* font-size: calc(0.5rem + 1.5vw); */
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}



a, a:visited{
    color: black;
    text-decoration: none;
}

li{
    list-style: none;
}
body{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    /* margin: auto; */
    min-height: 100vh;
    background-color: rgb(207, 216, 188);
}

header{
    /* position: sticky; */
    /* top: 0; */
    /* width: 100%; */
    /* height: 60px; */
    /* border: red 1px solid; */
    /* background-color: tomato; */
    
    /* z-index: -100; */
}

nav{
    position: sticky;
    top: 0;
    width: 100%;
    /* height: 60px; */

    box-shadow: 0 3px 10px black;
    background-color: rgba(207, 216, 188, 0.95);
    display: flex;
    justify-content: space-between;
    /* height: 100%; */
    align-items: center;
    padding: 10px;
    z-index: 10;
}

nav ul{
    /* height: 100%; */
    width: 100%;
    display: flex;
    /* margin: 0 auto; */
    justify-content: space-between;
    /* flex-direction: row; */
    /* align-items: center; */
}

#icons{
    cursor: pointer;
    display: none;
}

nav ul li{
    /* display: flex; */
    /* align-items: center; */
    /* height: 100%; */
    /* background-color: blue; */
    /* margin: 0 auto; */
}

nav ul li:hover{
    /* border: 2px solid white; */
    /* margin: 5px; */
    /* padding: 0 5px; */
    /* border-radius: 5px; */
    /* background-color: green; */
    /* margin: 0; */
    /* width: 100%; */
}


nav ul li a{
    height: 100%;
    width: 100%;
    /* background-color: white; */
    display: flex; /* Utilise Flexbox pour aligner le texte */
    justify-content: center; /* Centre horizontalement le texte */
    align-items: center; /* Centre verticalement le texte */
}

main{
    position: relative;
    /* padding-bottom: 100px;  */
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* flex-wrap: wrap; */
    /* justify-content: space-around; */
    margin: auto;
    margin-top: 1rem;
    /* word-wrap: break-word; */
    flex-grow: 1;
}

#about{
    display: flex;
    flex-direction: column;
    /* flex-wrap: wrap; */
    /* margin: 0 auto; */
    align-items: flex-start;
}

.about-content{
    margin-top: 25px;
    /* display: flex;
    align-items: center;
    flex-wrap: wrap; */
}

#about img{
    height: auto;
    max-width: 250px;
    /* border: 1px solid black; */
    border-radius: 50%;
    margin-right: 20px;
    float: left;
    shape-outside: margin-box;

}

#about p{
    flex: 1;
    line-height: 1.4;
}

#skill{

}

#project{
    display: block;
}

#contact{
    display: flex;
    flex-direction: column;
    align-items: center;
    /* position: absolute;  */
    bottom: 0;
}

#loading{
    width: 200px;
}

#dlcv{
    height: 50%;
}

/* #about p img{
    height: 250px;
    width: 250px;
    border-radius: 50%;
} */

#about,#skill,#project{
    margin-top: 50px;
}

#details{
    position: relative;
    background-color: rgb(182, 190, 165);
    bottom: 0;
    left: 0;
    padding: 10px 0;
    /* margin: 0 auto; */
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

#details a{
    color: black;
}

#details a:hover{
    color: white;
}

@media (max-width: 650px) { 

    #icons{
        display: block;
    }

   
    nav ul{
        position: fixed;
        left: -100%;
        top: 5%;
        flex-direction: column;
        background-color: rgba(207, 216, 188);
        width: 100%;
        text-align: center;
        transition: 0.25s;
    }

    nav.active ul{
        left: 0;
    }

    #about{
        flex-direction: column;
        align-items: center;
    }

    .about-content{
        display: flex;
        flex-direction: column;

        align-items: center;

        /* flex-direction: column; */
        /* flex-wrap: wrap; */
        /* margin: 0 auto; */
        /* align-items: flex-start; */
    }

    .about-content p{
        flex: 0;
        line-height: 1.4;
    }
    

    .about-content img{
        height: auto;
        max-width: 250px;
        width: 100%;
        border-radius: 50%;
        /* margin-right: 20px; */
    }
 }
