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

body{
	background: linear-gradient(#b4aa76, 60%, #258300);
	background-size: cover;
}


main{
	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;
}


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

#formulaire h1{
	font-size: 42px;
	font-weight: bold;
	color: white;
}

#formulaire{
	margin: 0 auto;
    width: 80%;
	margin-top: 150px;
	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: 75px;
}


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


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


#logos{
	margin-top: 50px;
	margin-left: 50px;
}


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


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


#logo-aden{
	margin-bottom: 150px;
	text-align: center;
}


#logo-aden img{
	width: 250;
	height: 400px;
}


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

.message{
	font-size: 36px;
	color: white;
	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;
}