/*/*
Site fait par Christian RUCH
4 rue de la verdoise
Hameau dhuilet
91150 Ormoy la rivière
*/


body {
	
	/*background-image: url("image/paysage2.jpg");
	background-attachment: fixed;
	background-position: center;*/
	background-color:rgb( 255,204,255);
	font-family: Comic sans MS, Arial, Georgia, serif, Time New Roman;
}
	
#bloc_page{
	width: 99%;
	margin: auto;
}

#bouton1{
	
	font-size:1em;
	background-color:rgb( 255,153,51);
	color:white
}

img{ /*pour que les images s'adaptent à l'écran*/
	max-width: 100%;
}

.retrait-court{
	text-indent: 60px;
	
}

h1{

	font-size: 1.5em;/* 60px/16px*/
	font-style: italic;
	font-weight: normal;
	color: red;
	
}

h2{
	font-size: 1 em;
	font-style: italic;
	
}

strong{
	color:red;
	
}

p{
	font-size: 2 em;
	
}

.entete{
	
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	margin: auto;
	margin-bottom: 1%;
}

.imageflottante{ /*logo ADSS*/
		height:11em;
}

.imageflottante2{ /*logo FFD*/
		height:11em;
}

.club/*club du debut*/
{
	font-size: 2.7em;
	margin:auto;
	text-align: center;
	color: black;
}

@media (max-width: 480px){
	.entete{flex-wrap: wrap;}
	.imageflottante{ height: 6em;}
	.imageflottante2{ height: 6em;}
}

.flexboxnav{
	
	display: flex; /*disposition flexible*/
	justify-content: space-around; /*répartition justifiée*/
	flex-wrap:wrap; /* passage à la ligne autorisée*/
	align-items: center; /*éléments centrés sur l'axe vertical*/
	width: 80%:
}

@media ( max-width: 1024px){
	
	.flexboxnav{
		width: 90%;
		
	}
	
}
nav{
	background-color: white;
	height: 60%;
	border: 2px solid black;
	border-radius: 1em;
	text-align: center;
	width: 80%;
	margin:auto;
}

nav a{
	text-decoration: none;
	color: blue;
	}

nav: ul{
	margin-left: 0px;
	padding: 0px;
	
}
nav li{ /* pour les éléments de la liste*/
	list-style-type: none;
	margin-left: 8px;
	border: 1px black;
}

nav li: focus{
	color: white;
	text-decoration: none;
	border: 3px solid #6495ed;
}


nav a:hover{
	color:red;
	font-size: 1.2em;
}

.retour{
	position:fixed;
	margin-top: 15em;
	margin-left: 0;
	width:5%;
	font-size:1em;
	background-color:white;
	padding:0.5em;
	border-radius: 0.5em 0.5em 0.5em 0.5em;
}

.retour p{
	color:black;
	
}

.retour h4{
	color:black;
	
}
.retour a{
	color:black;
	
	
}

.titre{
	font-size: 3em;
	text-align: center;
	background: rgb(155,255,204);
	background: rgba(155,255,204,.9);
	margin: auto;
	color: black;
	width: 60%;
	margin-top: 2%;
	margin-bottom: 2%;
	border: 2px solid black;
	border-radius: 40px 40px 40px 40px;
}

section{ /*conteneur parent de article*/
	display:flex;
	justify-content: stretch;
	align-items: flex-start;
	width:90%;
	margin: auto;
}

@media (max-width: 1024px){
	section{flex-direction:column;} /*mise en colonne si l'écran =<1024px*/
	section{align-items: stretch;}
	article {min-width: 90%;}
}

section a{
	color: black;
	font-size: 2em;
}	

section a:hover{
	color: red;
	font-size: 2em;
}	

article{/*conteneur enfant de .contenu et  parent de .aside1 et .aside2*/
	display:flex;
	flex-direction: column;
	align-content: stretch;
	width:100%;
	margin-left:6%;
	order: 0;
}

article a{
	color: black;
	font-size: 1.5em;
}	

article a:hover{
	color: red;
	font-size: 2em;
}	

aside{
	padding:2em;
	background-color:rgb(191,255,255);
	border: 2px solid black;
	border-radius: 1em;
}

aside h1{
	text-align: center;
	color:red;
	font-size: 2em;
}

aside p{
	font-size: 1.3em;
	color:black;
}

aside ul{
	font-size: 1.2em;
	color:blue;
}

aside img {
	width:30%;
	height:auto;
}
 
