*{
    margin : 0;
    padding : 0;
    box-sizing: border-box;
}
header {
    background-color: #bf0000;
    color: Black;
    padding: 10px 20px;
}

header h1 {
    margin: 0;
    font-size: 24px;
}
.nav {
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 20px 0;
    font-size: 18px;
}


.nav a {
    text-decoration: none;
    color: black;
    padding: 5px 10px;
    border-radius: 20px;
}

.nav a:hover{
        text-decoration: bold;
        border: 2px solid black;
        border-radius: 8px;
        color : white;
}


body {
    margin: 0;
    padding: 0;
    background-color: #bf0000; 
    font-family: Arial, sans-serif;
    color: black;
  }
  
  .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    height: 100vh;
    text-align: left;
    position: relative;
  }

  .image img {
    width: 200px;
    height: 280px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.3);
  }
  

  .infos {
    max-width: 300px;
  }
  
  .infos h2 {
    font-family: "Brush Script MT", cursive;
    font-size: 28px;
    margin-bottom: 15px;
    text-align: center;
  }
  
  .infos ul {
    list-style-type: disc;
    padding-left: 20px;
    font-size: 16px;
    line-height: 1.8;
  }
  
 
  .fleche {
    font-size: 40px;
    color: black;
    text-decoration: none;
    font-weight: bold;
    position: relative;
    top: 0;
    transition: transform 0.2s;
  }
  
  .fleche:hover {
    transform: scale(1.2);
  }
  

  .gauche {
    margin-right: 20px;
  }
  
  .droite {
    margin-left: 20px;
  }
  



footer {
    background-color:  #bf0000; 
    overflow: hidden;
    position: relative;
    height: 60px;
}

.bandeau {
    display: flex;
    align-items: center;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.logos {
    display: flex;
    gap: 60px;
    animation: defilement 20s linear infinite;
}

.logos img {
    height: 40px;
    object-fit: contain;
}

@keyframes defilement {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
