/* Style général */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(90deg, #c7bdf7 0%, #a09ffc 100%) ;
  }
  
  /* Style de la zone de navigation */
  nav {
    background-color: #333;
    color: #fff;
    display: flex;
    justify-content: center;
  }
  
  nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  nav a {
    color: #fff;
    display: block;
    padding: 1rem;
    text-decoration: none;
  }
  
  nav a:hover {
    background-color: #555;
  }
  
  /* Style de la zone gauche */
  .container {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    
  }
  
  .sidebar {
    margin-right: 20px;
    background-color: #f2f2f2ad;
    border-right: 1px solid #ddd;
    width: 20%;
    padding: 1rem;
    border-radius: 20px;
  }
  
  .sidebar h2 {
    color: olive;
    margin-top: 0;
  }
  
  .sidebar p {
    margin: 0;
  }
  
  /* Style de la zone de contenu à droite */
  .main {
    width: 70%;
    padding: 1rem;
    background-color: rgb(253, 253, 253);
    border: 1px solid #ddd;
    border-radius: 20px;
  }
  

  
  .container img {
        margin-top: 20px;
        margin-left: 20px;
        margin-bottom: 20px;
        max-width: 70%;
        height: auto;
        border-radius: 10%;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.25);
    }
  
  /* Style des sections de contenu */
  section {
    margin-top: 0rem;
    margin-bottom: 2rem;
  }
  
  section h1 {
    color: olive;
    font-size: 2rem;
    margin-top: 0;
  }
  
  section p {
    line-height: 1.5;
  }
  