
body{
	background: rgba(0,0,0,0.1);
	margin: 0;
	font-family: sans-serif;
	color: #222;
}
#infos{
	display: flex;
	background-position-y: 50px;
	font-family: ma_police;
	margin: 0px;
	padding: 0px;
	flex-direction: column;
	text-align: justify;
	align-items: center;
	flex-direction: column;
}

.reseaux h2,
.documents h3,
#myform h2 {
    text-align: center;
    margin: 40px 20px 20px 20px;
    padding-bottom: 5px;
    font-size: clamp(2em, 6vw, 3em); /* Taille fluide entre 2em et 3em */
    color: black;
    font-weight: bold;
}

.reseaux.bloc{
	background: white;
	margin-top: 100px;
	width: 90vw;
	border-radius: 4px;
}
.reseaux h2{
	text-align: center;
	text-align:center;
	margin: 100px 40px 20px 40px;
	padding-bottom: 5px;
	font-size: 2em;
	text-decoration: none;/*border-bottom: 1px solid #aeaeae;*/
	color: black;
	margin-top: 10px;
}
.reseaux h3 {
    text-align: center;
    margin: 20px 20px 20px 20px;
    padding-bottom: 5px;
    font-size: clamp(1.3em, 4vw, 2em); /* Taille fluide entre 1.3em et 2em */
    color: black;
    font-weight: bold;
}
.reseaux p{
	text-align: center;
	margin-left: 40px;
	margin-right: 40px;
}
.reseaux a:hover{
	 transform : scale(1.2);
}
.documents{
	background:orange;
	border-radius: 4px;
	margin-left: 0px;
	width: 1;
	margin-top: 10px;
	margin-bottom: 10px;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
	padding: 2vw;
	padding-bottom: 30px;

}
.documents h3{
	text-align:center;
	margin: 10px 40px 20px 40px;
	padding-bottom: 5px;
	font-size: 2em;
	text-decoration: none;
	color:white;
}
.documents h3,
#myform h2 {
    color: white;
}

.documents a{
	text-decoration: none;
	color:white;
	margin-left: 5%;
}
.documents ul{
	list-style: none;
}
.bloc_resaux_nom{
	display: flex;
	justify-content: center;
	background: none;
}
.reseaux_nom{
	height: 50px;
	margin: 15px;
}
.titre_fichier_pres{
	margin-left: 40px;
}

/*formulaire */
#myform {
	display:grid;
	grid-template-columns: 1fr 1fr;
	width:60vw;
	padding-left: 2%;
	padding-right: 2%;
    background-color:rgba(48,48,48,255);
    gap: 2vw;
	padding-bottom: 2vh;

}
#myform h2 {
    margin-bottom: 20px; /* Espacement sous le titre */
    text-align: center;
	font-weight: bold;
	color: white;
	font-size: 2em;
	grid-column: span 2; /* Centrer le texte du titre */
}
#myform .form-group{ /* Chaque groupe de formulaire prend toute la largeur */
    margin-bottom: 15px; /* Espacement entre les éléments */
}
#myform .full-width{
	grid-column: span 2;
}
#myform label {
  background-color:none;
  color:white;
}
#myform input[type=prenom],input[type=nom], input[type=email],input[type=tel],input[type=text] {
 /* Espacement généreux */
    border: 1px solid #ccc; /* Bordure douce */
    border-radius: 4px; /* Coins arrondis */
	font: 1rem / 1.5 sans-serif;
	box-sizing: border-box;
	display: block;
	width: 100%;
	padding: 2vh ;
}
#myform textarea {
 /* Espacement généreux */
    border: 1px solid #ccc; /* Bordure douce */
    border-radius: 4px; /* Coins arrondis */
	font: 1.25rem / 1.5 sans-serif;
	display: block;
	box-sizing: border-box;
	width: 100%;
	padding: 2vh;
	min-height: 10rem;
	resize: vertical;
}
/* Styles pour le bouton */
#myform .bouton button {
	width: 30vh;
    padding: 10px 2px; /* Espacement généreux */
    border: none; /* Pas de bordure */
    border-radius: 4px; /* Coins arrondis */
    background-color:orange; /* Couleur de fond */
    color: white; ; /* Couleur du texte */
    cursor: pointer; /* Curseur de la main */
    transition: background-color 0.3s, transform 0.3s; /* Transition pour les effets */
    margin-top: 10px;
}
/* Effets au survol pour le bouton */
#myform .bouton button:hover {
    background-color: #4a80a0; /* Couleur de fond au survol */
    transform: translateY(-2px); /* Légère élévation au survol */
}
/* Réinitialisation de l'élévation au clic */
#myform .bouton button:active {
    transform: translateY(0); /* Réinitialiser l'élévation au clic */
}
/* Styles spécifiques pour le champ de texte plein */
#myform label {
  background-color:none;
  color:white;
}
@media screen and (max-width:768px) {
	.reseaux h2{
		text-align: center;
		padding-bottom: 5vh;
		font-size: 2em;
		text-decoration: none;/border-bottom: 1px solid #aeaeae;/
		color: black;
	}
	#myform {
		display:flex;
		flex-direction: column;
		width:96vw;
		margin: 0 2vw;
	    background-color:rgba(48,48,48,255);
	    gap: 2vw;
		padding-bottom: 2vh;
	}
	#myform h2{
		font-size:2em;
	}
}


.bloc {
	width: 90vw;
	max-width: 800px;
	margin: 30px auto;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}