*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

body{
    color: #ededed;
    background-image: url(medias/fondtrop2.jpg);
    line-height: 1.6;

    
}

:focus-visible {
  outline: 3px solid #005fcc;
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
  outline: 3px dashed #ffba08;
  outline-offset: 4px;
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  border: 2px solid #00b5ad;
  outline: none;
  box-shadow: 0 0 3px 2px rgba(0, 181, 173, 0.75);
}

.custom-focus:focus-visible {
  outline: 2px dashed #f39c12;
  outline-offset: 3px;
}

.header {
    position: relative;
    width: 70%;
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 20px 0; 
    background-color: #0d0d0d64;
    -webkit-backdrop-filter: blur(10px); 
    backdrop-filter: blur(10px);
    border-radius: 50px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 100;
    top: 30px;
  }
  
  
  .logo{
      font-size: 1.6rem;
      color: #ededed;
      text-decoration: none;
      font-weight: 600;
  }
  
  
  .navbar a {
      font-size: 1.1rem;
      color: #ededed;
      text-decoration: none;
      font-weight: 500;
      margin-left: 35px;
      transition: .3s;
  }
  
  .navbar a:hover,
  .navbar a.active{
      color: #46b46e;
  }



.container {
    max-width: 1050px;
    margin: 0 auto;
    background-color: rgba(16, 16, 16, 0.515);
    padding: 20px;
    margin-top: 70px;
    margin-bottom: 50px;
    border-radius: 20px;
}

h1 {
    text-align: center;
    margin-bottom: 50px;
}

p {
    margin-bottom: 20px;
}

ul {
    list-style: none;
    padding-left: 0;
}

li {
    margin-bottom: 10px;
}



.gras{
    font-weight: bold;
}



/* FOOTER FOOTER FOOTER */
.footer {
    position: relative;
    background-color: #333;
    color: #fff;
    padding: 30px 0;
    font-size: 0.9rem;
  }
  
  .footer .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer .footer-content .footer-section {
    width: 30%;
  }
  
  .footer .footer-content .footer-section h2 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: white;
  }
  
  .footer .footer-content .footer-section p {
    line-height: 1.6;
  }
  
  .footer .footer-content .footer-section ul {
    list-style: none;
    padding: 0;
  }
  
  .footer .footer-content .footer-section ul li {
    margin-bottom: 5px;
  }
  
  .footer .footer-content .footer-section ul li a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s;
  }
  
  .footer .footer-content .footer-section ul li a:hover {
    color: #ffd700;
  }
  
  .footer .footer-bottom {
    background-color: #222;
    padding: 10px 0;
    text-align: center;
    font-size: 0.8rem;
  }

  .bold{
    font-weight: bold;
  }