@keyframes apparition {
	0%{
		opacity: 0;
	}
	100%{
		opacity: 1;
	}
}
@keyframes survolMenu {
	0%{
		background-color: #003072;
		color: white;
	}
	100%{
		background-color: white;
		color: #003072;
	}
}
@keyframes sortieSurvolMenu {
	0%{
		background-color: white;
		color: #003072;
	}
	100%{
		background-color: #003072;
		color: white;
	}
}
		
body{
	animation: apparition 1s;
	background-image: url("images/arriere_plan.jpg");
	background-attachment: fixed;
	background-size: cover;
	background-position: center;
	font-family: Arial;
}
a{
	text-decoration: none;
}
.barreMenu{
	background-color: #003072;
	margin-top: 80px;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	height: 80px;
}
.menu{
	color: white;
	background-color: #003072;
	font-size: 18pt;
	padding: 20px;
	padding-top: 25px;
	padding-bottom: 25px;
}
.lienMenu{
	color: inherit;
}
.menu:hover{
	animation: survolMenu 1s;
	background-color: white;
	color: #003072;
}
.menu:not(:hover){
	animation: sortieSurvolMenu 0.5s;
	background-color: #003072;
	color: white;
}
.sousMenu{
	display: none;
	position: absolute;
	text-align: left;
	margin-left: -20px;
	margin-top: 25px;
	color: white;
	padding: 10px;
	background-color: #003072;
	border-width: 1px;
	border-color: rgba(128,128,255,0.5);
	border-style: solid;
	font-size: 14pt;
}
.lienSousMenu{
	color: inherit;
}
.lienSousMenu:hover{
	color: #E30D12;
}
.menu:hover .sousMenu{
	display: block;
	animation: survolMenu 0.5s;
	background-color: white;
	color: #003072;
}
.menu:not(:hover) .sousMenu{
	display: none;
	animation: sortieSurvolMenu 0.25s;
	background-color: #003072;
	color: white;
}

.article{
	margin: 0 auto;
	background-color: rgba(255, 255, 255, 0.9);
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: center;
	margin-top: 100px;
	padding: 35px;
	width: 60%;
	font-size: 14pt;
}
td{
	font-size: 14pt;
}
button{
	font-size: 14pt;
}
input{
	font-size: 14pt;
}
textarea{
	font-size: 13pt;
	font-family: Arial;
}
.elementArticle{
	max-width: 500px;
	text-align: justify;
	padding-top: 20px;
	padding-bottom: 20px;
}
.titreArticle{
	font-family: Comic Sans MS;
	color: #E30D12;
	font-size: 20pt;
	font-style: italic;
	font-weight: bold;
	flex-basis: 100%;
	max-width: 100%;
}

@media only screen and (max-width: 1080px){
	body{
		zoom: 180%;
	}
	.menu{
		background-color: transparent;
		margin-top: 0px;
		flex-direction: column;
	}
	.lienMenu{
		background-color: #003072;
		width: 300px;
		text-align: center;
	}
	.article{
		flex-direction: column;
		width: 100%;
	}
}