<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
body
{ 
	margin: 0;
	padding: 0;
	text-align: center ;
	background-color: #546ed4;
}

/*  Balise universselle Police pour tout le site */
*{
    font-family:'Bad Script',handwriting;
font-size: 20px;
font-style: italic;
font-weight: normal;
color: #e4eefa;
	}
	
	/* test mise en forme des blocs pour afficher  les images */
.container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: rows;
  align-items: center;
 }
 
  /* arrondi a toutes les images  */
  section img{
border-radius: 40px;
}
  
  /*les carrÃ©s s'arretent de diminuer Ã&nbsp; 350px*/
  .item
  {
  flex-grow: 1;
  flex-shrink: 0;
  width: 350px;
  margin: 5px;
  }	
  




	
		/* couleur de l'entÃªte */
header
{
height: 180px;
background-color:#d3c6a7;
color: #475b8e;
border-radius: 40px;
}





/* position du menu alignÃ© avec wrap, centrÃ© ,  */
nav
{ display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
padding: 20px;
background: #7cbeab;
border-radius: 40px;

}

/* Deco des liens barre dessous espacÃ© de 10 px    et les barres dessous a 5px*/

nav a
{
color: #a0522d;
text-decoration: none;
margin-right: 10px;	
font-size: 26px;
border-bottom: 1px solid #000;
padding-bottom: 5px;

}

nav a:visited {
  color: #e4eefa;
  background: #265301;
}
nav a:hover {
  
  background: #cdfeaa;
}

nav a:active {
  
  color: #e4eefa;
}
/*  alignement du logo et du titre dans le header*/
.principal  table
 
{
margin-bottom: 40px;
padding: 30px;
display: flex; #6f6f6f;
flex-wrap: wrap;	
	
	}
	
	
	.principal .droite{
	float: right;
	width: 50%;
	margin-right: 10%;
	}
	
@media screen and (max-width: 810px)
.principal .droite
{
	
	width: 100%;
	}
	
	.principal .gauche {
	float: left;
	margin-left: 10%;
	padding-top: 28px;
	
	}


/* page d'accueil affichage de la photo */	
article
{
	float: left; 
	
}	
/* DÃ©calage par le haut pour le menu dÃ©roulant*/
section{
width: 100%
	float: left;
	padding-top: 10px;
	}
	


/* position du titre et couleurs */
header h1
{
font-family:'Bad Script',handwriting;
font-size: 60px;
font-style: italic;
font-weight: normal;
color: #a0522d;


}

caption
{
margin-top: 30px;
}
h1{
font-size: 50px; 


}
h2{
	padding-left: 50px; padding-right: 50px;
font-size: 26px;
text-align: left;
}
h3
{
	font-size: 26px;
}
/* meme chose que h1, pour les robots */
h6
{
font-size: 50px;
}

#lavideo{
border-radius: 40px;
}
footer
{
width: 100%;
}

}


/* Style gÃ©nÃ©ral du formulaire */
form {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
	
}

/* Style des champs de saisie */
form input[type="text"],
form input[type="email"],
form textarea {
    width: 50%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #333;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
	
}

/* Effet au focus sur les champs de saisie */
form input[type="text"]:focus,
form input[type="email"]:focus,
form textarea:focus {
    border-color: #007bff;
    outline: none;
	color: black;
}

/* Style du champ de texte multiligne */
form textarea {
    resize: vertical;
    min-height: 100px;
	color: black;
}

/* Style du bouton d'envoi */
form button[type="submit"] {
    width: 100%;
    padding: 10px;
    background-color: #724287;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Effet au survol du bouton */
form button[type="submit"]:hover {
    background-color: #0056b3;
}

/* Style des placeholders */
::placeholder {
    color: #999;
    opacity: 1; /* Pour assurer la compatibilitÃ© avec certains navigateurs */
}

/* Style pour les messages d'erreur ou de succÃ¨s (optionnel) */
.message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
    font-size: 14px;
	color: black;
}

.message.success {
    background-color: #d4edda;
    color: #155724;
}

.message.error {
    background-color: #f8d7da;
    color: #721c24;
}






































































































































































































































</pre></body></html>