/*-----------------------MISE EN PAGE ELEMENTS-----------------------*/

body{
	margin: 0px;
	margin-top: 12px;
	margin-bottom: 60px;
	background: linear-gradient(blue, 35%, pink);
}


form{
	text-align: center;
}


/*-----------------------REGLAGES FORMULAIRE-----------------------*/


.email{
	font-size: 54px;
	text-align: center;
	color: white;
	animation: fadeIn ease 0.5s;
	-webkit-animation: fadeIn ease 0.5s;
	-moz-animation: fadeIn ease 0.5s;
	-o-animation: fadeIn ease 0.5s;
	-ms-animation: fadeIn ease 0.5s;
}


#formulaire{
	margin: 0 auto;
    width: 80%;
	margin-top: 50px;
	margin-bottom: 120px;
	text-align: center;
}


#formulaire .nom{
	width: 296px;
	height: 50px;
	font-size: 22px;
	text-align: center;
	margin-bottom: 4px;
}


#formulaire .sujet{
	width: 296px;
	height: 50px;
	font-size: 22px;
	text-align: center;
	margin-bottom: 4px;
}


#formulaire .email{
	width: 600px;
	height: 30px;
	font-size: 22px;
	text-align: center;
	margin-bottom: 4px;
}


textarea{
	resize: none;
	font-size: 24px;
	width: 602px;
}


#formulaire p{
	font-size: 20px;
	font-weight: bold;
	color: red;
}


#formulaire .bouton-envoyer{
	margin-top: 5px;
	margin-right: 10px;
	margin-bottom: 5px;
	background-color: black;
	color: white;
	font-weight: bold;
	font-size: 16px;
	border-radius: 20px;
	transition-duration: 0.5s;
	border: 0;
	width: 100px;
	height: 25px;
	cursor: pointer;
}


#formulaire .bouton-envoyer:hover{
	opacity: 0.5;
}


#formulaire .bots{
	visibility: hidden;
}


/*-----------------------RESEAUX-----------------------*/

#reseaux{
	width: 60%;
	margin-top: 150px;
	margin-bottom: 50px;
	animation: fadeIn ease 0.5s;
	-webkit-animation: fadeIn ease 0.5s;
	-moz-animation: fadeIn ease 0.5s;
	-o-animation: fadeIn ease 0.5s;
	-ms-animation: fadeIn ease 0.5s;
}


#reseaux h1{
	margin-left: 10px;
	text-align: left;
	font-weight: bold;
	color: black;
	font-size: 48px;
}


#reseaux .separation{
	background-color: white;
	margin-bottom: 10px;
	height: 5px;
	width: 100%;
}


#logos{
	margin-left: 50px;
}


#logos .image{
	opacity: 1;
	margin-top: 50px;
	margin-right: 50px;
	transition-duration:0.2s;
	border-radius: 10px;
}


#logos .image:hover{
	opacity: 0.5;
}


/*-----------------------TABLEAU EQUIPE-----------------------*/

#equipe{
	width: 60%;
	margin-top: 150px;
	animation: fadeIn ease 0.5s;
	-webkit-animation: fadeIn ease 0.5s;
	-moz-animation: fadeIn ease 0.5s;
	-o-animation: fadeIn ease 0.5s;
	-ms-animation: fadeIn ease 0.5s;
}


#equipe h1{
	margin-left: 10px;
	text-align: left;
	font-weight: bold;
	color: black;
	font-size: 48px;
}


#equipe .separation{
	background-color: white;
	margin-bottom: 10px;
	height: 5px;
	width: 100%;
}


table{
	margin-left: 50px;
	margin-top: 50px;
	margin-bottom: 200px;
}


#equipe p{
	vertical-align: top;
	height: 80px;
	font-size: 22px;
	font-weight: bold;
	color: white;
	margin-right: 20px;
}


#equipe .image{
	margin-right: 100px;
	border-radius: 20px;
	transition-duration: 0.4s;
	border: solid;
	border-color: black;
}


#equipe .image:hover{
	border-radius: 40px;
	opacity: 0.8;
}


/*-----------------------CSS DU FICHIER PHP-----------------------*/

.message{
	font-size: 36px;
	color: #7CAE0F;
	font-weight: bold;
	text-align: center;
	transition: 1.5s;
}


.link{
	color: black;
	text-decoration: none;
	transition:1s;
}


.link:hover{
	color: red;
	text-decoration: none;
	transition:0.2s;
}