.containere-projet{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-flow: column;
    padding: 10px;
   
    
}
.projet{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    background-color: #000000;
    background-image: url("https://www.transparenttextures.com/patterns/black-orchid.png");
    /* This is mostly intended for prototyping; please download the pattern and re-host for production environments. Thank you! */
    border-radius: 20px;
   padding: 10px;
    height: 75%;
    width: 90%; 
    gap:10px;
    border: 5px solid white;
    box-shadow: 0px 0px 30px 10px black;

}
.projet div{
 
   position: relative;
   
}
.projet div .brd a{
    text-decoration: none;
    font-size: 35px;
    margin: 0 30px;
    font-weight: 900;
 
  
   
   

}

.brd{
   height:100% ;
   width: 100%;
   background-color: rgba(255, 255, 255, 0.788);
   position: absolute;
   display: flex;
   justify-content: center;
   border: none;
   top: 0;
   left: 0;
   align-items: center;
   position: absolute;
   z-index: 99;
  opacity: 0;
  transition: 500ms ease-in;
 
}
.projet div:hover .brd{
  opacity: 1;
}


.yt{
    color: red;
}
.git{
    color: black;
}
.principal{
    grid-column: 1/3;
}
.prj1,.prj2,.prj3,.prj4,.principal{
    position: relative;
 
    overflow: hidden;
    border: 2px solid rgb(255, 255, 255);
    transition: 700ms ease-in;
    border-radius: 20px;
}
.prj1 img,.prj3 img,.prj4 img, .principal img{
    width: 100%;
    height: 100%;
    
   
    position: absolute;
}
.menuimage{
    width: 100%;
    position: absolute;
    height: 100%;
 

}
.prj2{
    background-color: black;
}

#principalimage {
    transition: opacity 1s ease-in-out; /* Transition d'1 seconde sur l'opacité */
    opacity: 1; /* Opacité visible */
  }

  #principalimage.fade-out {
    opacity: 0; /* Opacité invisible */
  }


  /* General Footer Styling */
footer {
    background-color: #000; /* Black background */
    color: #fff; /* White text */
    padding: 40px 20px;
    font-family: Arial, sans-serif;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap; /* Wrap sections for responsiveness */
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-section {
    flex: 1 1 250px; /* Adjust sections to fit the screen */
    margin: 10px;
  }
  
  .footer-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
    border-bottom: 2px solid #5c5c5c;
    padding-bottom: 5px;
  }
  
  .footer-section p, .footer-section ul {
    font-size: 14px;
    line-height: 1.6;
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-section ul li {
    margin-bottom: 10px;
  }
  
  .footer-section ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    margin: 0 5px;
  }
  
  .footer-section ul li a:hover {
    color: #818181;
  }
  
  /* Social Icons */
  .social-icons {
    display: flex;
    gap: 30px;
  }
  
  .social-icons a  {
   font-size: 30px;
    transition: transform 0.3s ease;
    color: white;
   
  }
  
  .social-icons a img:hover {
    transform: scale(1.2);
    color: white;
  }
  
  /* Footer Bottom */
  .footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    border-top: 1px solid #444;
    padding-top: 10px;
  }
  

