header {
    background-image: url("headerMC.png");
    background-size: cover; /* L'image couvre tout l'espace disponible */
    background-repeat: no-repeat; /* Évite que l'image se répète */
    background-position: center; /* Centre l'image */
    height: 30vh; /* Hauteur du header */
    margin: 0;
    margin-bottom: 0;
    width: 100%; /* S'assure que l'élément header occupe toute la largeur */
}
body{
	background-color:rgba(204, 186, 149, 1);
	margin: 0;
    padding: 0;
    height: 100%;
           
}

    nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        background-color: #333;
        overflow: hidden;
    }

    nav ul li {
        display: inline-block;
    }

    nav ul li a {
        text-decoration: none;
        color: white;
        padding: 10px 15px;
        display: block;
    }

    nav ul li a:hover {
        background-color: #575757;
    }

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: black;
    color: white;
    text-align: left;
    padding-top: 1px;
    padding-bottom: 1px;
    height: auto;
    
    z-index: 999; /* Assurez-vous que le z-index est élevé pour s'assurer que le footer reste au-dessus du contenu */
}

  footer a {
    text-decoration: none;
    color: white;

  }
  footer a:hover {
    text-decoration: underline;
    
  }

  footer ul {

    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: space-between;
}

footer ul li {
   margin-left: 20px;
    display: inline; /* Afficher les éléments en ligne */
    margin-right: 20px; /* Espace entre les éléments */
}


@media (max-width: 767px) {
header {
    background-image: url("headerMCphone.png");
    height: 140px;
            
  }
  
  
  
      }