body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(45deg, #e6ad43, #ffffff);
    color: #333;
    /* overflow-x: hidden; */
}
/* un carre noir pour cacher le fond blanc */
.header-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px; /* Même hauteur que le header */
    background-color: black;
    z-index: -1;/* Assure que le fond ne recouvre pas le contenu du header */
}

header {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Aligne les éléments à gauche */ /* space-between; */
    /* padding: 1%; */
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000; 
    height: 150px; /* Augmentation de la hauteur de l'entête */
}

header img {
    height: 180px;
}

header nav a {
    /* margin: 0 10px; */
	margin: 10px; 
    color: white;
    text-decoration: none;
    font-size: 1rem;
}

header nav a:hover {
    text-decoration: underline;
}

main.main_body {
    margin-top: 150px; /* Pour compenser le header fixe */
    padding: 5%;
    background-color: rgba(230, 173, 67, 0.9);
    height: 150vh; /* Démonstration défilable */
    overflow-y: hidden;
    border-radius: 10px;
	    overflow-x: hidden; /* Supprime la barre de défilement horizontale dans main */
}

footer {
    background-color: #111;
    color: white;
    text-align: center;
    padding: 1% 0;
    margin-top: 20px;
}

footer a {
    color: #e6ad43;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
