        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
        }

 
        /* Bandeau fixe en haut avec l'image */
        .bandeau {
            top: 0;
            left: 0;
            width: 100%;
            height: 200px;
            background-image: url('/IMG/Bandeau.jpg'); /* Remplacez par le chemin de votre image */
            background-size: cover;
            background-position: center;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .bandeau h1 {
        		font-size: 250%;
            color: white;
            text-shadow: 2px 2px 4px rgba( 0, 0, 0, 1);
        }

        /* Barre de navigation */
        nav {
            background-color: #333;
            overflow: hidden;
            position: relative;
        }

        nav ul {
            list-style-type: none;
            margin: 0;
            padding: 0;
            text-align: center;
        }

        nav ul li {
            display: inline;
        }

        nav ul li a {
            color: white;
            text-decoration: none;
            padding: 10px 10px;
            display: inline-block;
            text-transform: uppercase;
            
        }

        nav ul li a:hover {
            background-color: #575757;
            color: red;
				}

        /* Section principale */
        .content {
            margin-top: 10px;
            padding: 10px;
            text-align: center;
        }

        /* Tableau pour décrire les pages */
        table {
            width: 100%;
            margin: 0 auto;
            border-collapse: collapse;
        }

        table, th, td {
        		font-size: 18px;
        		/*text-shadow: 1px 1px 2px blue;*/
            text-align: justify;
             border: 0px; 
           /* border: solid 2px ; */      

        }

        th, td {
            padding: 5px;
        }

        th {
            background-color: #f2f2f2;
        }



.texte-defile {
		display: inline-block;                /* déclare le modèle de "boite en ligne" */
		white-space: nowrap;              /* pas de passage à la ligne */
  animation: defilement 15s linear infinite alternate;
}
.texte-defile:hover {         /* facultatif ; crée un arrêt au survol */
 animation-play-state: paused;
}

@keyframes defilement {
  from { transform: translateX(5%); }
  to { transform: translateX(50%); }
}

			/* formulaire  de contact */

.form-container {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 80%;
}

.form-container.h2 {
    text-align: center;
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

textarea {
    height: 100px;
    resize: none;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background-color: #45a049;
}

input:focus, textarea:focus {
    border-color: #4CAF50;
    outline: none;
}
