*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.navbar{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(23, 61, 110);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.navbar ul{
display: flex;
list-style: none;
margin: 10px 0px;

}
.navbar ul li {
    font-family: century;
    font-size: 1.1rem;
    font-weight: bold;
    margin: 6px;
    
}
.navbar ul li a{
    text-decoration: none;
    padding: 4px 10px;
    /* color: white; */
    transition: all .5s ease ;
    background-color: white;
    color: black;
    box-shadow: 0 0 20px white;
    border-radius: 30px;
    border: solid rgb(11, 10, 10); 
}
.navbar ul li a:hover {
    background-color: rgb(183, 70, 70);
    color: white;
    box-shadow: 0 0 10px white;
}

#image{
    background-color: rgb(161, 190, 201);
    padding: 20px;
     box-shadow: 0 0 20px black;
    margin-bottom: 10px;
    margin-top: 10px;
    z-index: 999;
}

.headings{
    font-family: century;
    font-size: 3rem;
    text-align: center;
    margin: 20px 0px;
    
}
#about{
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    background-color: rgb(161, 190, 201);
    box-shadow: 0 0 20px black;
    padding: 20px;
    margin-bottom: 10px;
    margin-top: 10px;
}
#pic{
   
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left: 26%;
    margin-right: 26%;
   
}
#pic img{
    width: 575px;
    height:400px ;
    border-radius: 60px;
    border: solid white;

}


#intro{
    display: flex;
    flex-direction: column;
    text-align: justify;
    padding: 10px;
    
}
#intro h2{
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-top: 10px;
    font-weight: bolder;
}

.paragraphe{
    font-size: 18px;
    line-height: 1.5;
}
.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    /* height: 350px; Hauteur de la section */
  }

  .video{
    display: flex;
    justify-content: center;
}
.bouna{
    font-weight: bold;
    color: brown;
}
.btn{
    padding: 10px 35px;
    background-color: rgb(183, 70, 70);
    color: white;
    box-shadow: 0 0 10px white;
    margin: 10px;
    transition: .6s ease;
    border-radius: 30px;
}
.btn:hover{
    cursor: pointer;
    background-color: white;
    color: black;
    box-shadow: 0 0 5px white, 0 0 10px white, 0 0 15px white;
    font-weight: bold ;
}
#pied{
    background-color: rgb(161, 190, 201); 

    padding: 20px;
     box-shadow: 0 0 20px black;
    margin-bottom: 10px;
    margin-top: 10px;
    z-index: 999;
    border-top-left-radius: 300px;
    border-top-right-radius: 300px;
    height: 300px;
}