*{
    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;
}

body{
    background-color: rgb(199, 216, 229);
}
.video{
    margin-bottom: 7px;
    
}
  

    

.block{
    background-color: azure;
    padding: 5px;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 30px;
}
#image{
    background-color: rgb(161, 190, 201);
    padding: 20px;
     box-shadow: 0 0 20px black;
    margin-bottom: 10px;
    margin-top: 10px;
    z-index: 999;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#image:hover{
    background-position: left bottom;
    border: none;
    box-shadow: 0 0 20px rgb(255,45,45);
}





.headings{
    font-family: century;
    font-size: 1.1rem;
    text-align: center;
    margin: 3px 0px;
    
}
h1{
    margin-bottom: 25px;
    border-bottom: 2px solid rgb(100, 38, 38);
    /* border-bottom: 2px solid rgb(246, 244, 244); */
}
.scroll-section {
    width: 100%;
    overflow-x: scroll;
    white-space: nowrap;
    text-align: center;
  }

  .scroll-content {
    display: inline-block;
    margin-right: 10px; /* Espacement entre les images */

    /* background-color: rgb(210, 209, 187); */
    padding: 5px;
    padding-left: 10px;
    padding-right: 15px;
    border-radius: 30px;
  }

  .scroll-content img {
    max-width: 100%;
    height: auto;
    border: 1px solid #ccc; /* Optionnel : ajoute une bordure autour des images */
  }
  .scroll-arrow {
    font-size: 24px;
    cursor: pointer;
    display: none;
  }

  .scroll-section:hover .scroll-arrow {
    display: block;
  }
  .scroll-section img{
    width: 360px;
    height: 240px;
    margin: 10px;
    border-radius: 30px;
    border: solid white;
  }

  /*portfolio section*/
#image{
    
    /* background-color: rgb(116, 156, 172); */
    background-color: rgb(161, 190, 201);
    box-shadow: 0 0 20px black;
    padding: 20px;
    margin-bottom: 10px;
    margin-top: 10px;
    z-index: 999;
}

.video{
    display: flex;
    justify-content: center;
}
.btnn{
  padding: 5px 35px;
  background-color: rgb(11, 49, 59);
  color: white;
  box-shadow: 0 0 10px white;
  margin: 3px;
  transition: .6s ease;
  border-radius: 30px;
}