
/*caractéristique de la page*/
body
{
	display: grid;
	grid-template-columns: 210px 1fr;
	grid-template-rows: 100px 1fr;
	padding: none;
	margin: none;
	background-color: rgba(231, 194, 124, 0.315);
	font-size: 5px;
}

/*caractéristique bandeau navigation*/
nav
{
	grid-column: 1/3;
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	background-color: rgb(92, 64, 48);
	height: 100%;
	width: 100%;
	box-shadow: -3px 5px 21px hsla(0, 0%, 0%, 0.8);
}

/*caractéristique éléments bandeau navigation*/
nav div
{
	display: flex;
	align-items: center;
}

/*animation éléments bandeau navigation*/
nav div:hover
{
	transition: all 0.8s ease;
	border: solid black;
}

/*caractéristique zone annexe*/
aside
{
	grid-column: 1/1;
	background-color: rgb(143, 119, 75);
	height: 1fr;
	display: flex;
	flex-direction: column;
	align-items: center;
}

/*caractéristique éléments zone annexe*/
aside div
{
	display: flex;
	justify-content: center;
	border: solid white;
	background-color: rgb(92, 64, 48);
}

/*caractéristique en tête*/
header
{
	grid-column: 1/3;
	display: flex;
	justify-content: center;
	align-items: center;
}

/*caractéristique corps*/
main
{
	grid-column: 2/2;
}

/*caractéristique titre niveau 1 et 2*/
h1,h2
{
	display: flex;
	flex-wrap:wrap;
	width: 1fr;
	background-color: rgba(136, 9, 9, 0.616);
	font-weight:bold;
	font-size: 2.2rem;
	box-shadow: -3px 5px 21px hsla(0, 0%, 0%, 0.8);
}

/*animation titre niveau 1 et 2*/
h1:hover,h2:hover,h3:hover,h4:hover
{
	transition: all 0.8s ease;
	text-decoration: underline;
}

/*caractéristiques supplémentaires titre niveau 2*/
h2
{
	grid-column:1/3;
	justify-content: center;
	background-color:rgba(102, 102, 102, 0.74);
}

/*caractéristiques titre niveau 3*/
h3
{
	grid-column:1/3;
	display: flex;
	justify-content:center;
	background-color:rgb(143, 119, 75);
	font-size: 2rem;
}

/*caractéristiques titre niveau 4*/
h4
{
	grid-column:1/3;
	display: flex;
	justify-content:center;
	background-color:rgb(170, 144, 94);
	font-size: 1.5rem;
}

/*police pour tous sauf h1,h2,h3*/
*:not(h1,h2,h3)
{
	font-family: Cambria;
}

/*zone stockage des chiffres*/
.numbers
{
	display: flex;
	justify-content: space-between;
}

/*caractéristiques chiffres*/
.number div:first-child
{
	display: flex;
	align-items: center;
	justify-content: center;
	justify-self: center;
	font-size: 3rem;
	border-radius:100%;
	background-color: white;
	height: 200px;
	width: 200px;
}

/*animation chiffres*/
.number div:first-child:hover
{
	transition: all 0.8s ease;
	background-color: black;
}

/*correspondance des chiffres*/
.number div:last-child
{
	display: flex;
	flex-direction: column;
	justify-content: center;
	justify-self: center;
	align-items: center;
	text-decoration: underline;
	font-style: italic;
}

/*caractéristiques slogan*/
.slogan
{
	display: flex;
	justify-content: center;
	grid-column: 1/3;
	font-size: 1.5rem;
	text-decoration: underline;
	font-style: italic;
}

/*caractéristiques video*/
.video
{
	display: flex;
	justify-content: center;
	grid-column: 1/3;
	border-radius: 15px 15px 5px 5px;
	border: 5px solid white;
	width: auto;
	margin: auto;
}

/*taille d'écriture*/
p,ul,footer,a,nav,aside,.number div:last-child,table,form,article,.sommaire,.number div:last-child
{
	font-size: 1rem;
}

/*alignement paragraphe*/
p
{
	text-align: center;
}

/*caractéristiques pied de page*/
footer
{
	display: flex;
	grid-column: 1/3;
	height: 300px;
	width: 100%;
	background-color:rgba(61, 61, 61, 0.897);
}

/*zone d'écriture pied de page*/
.footerBlock
{
	display: block;
	text-align: center;
	align-items: center;
	margin: auto;
	padding: 2rem;
}

/*titre block pied de page*/
.footerTitle
{
	font-size: 2rem;
}

/*éléments coloré en blanc*/
a,footer,.number div:first-child:hover,h4,h3,h1,h2,aside,nav div,thead,td:first-child,caption,.sommaire,aside
{
	color: white;
}

/*animation des titre*/
a:hover
{
	transition: all 0.8s ease;
	border: solid black;
}

/*style tableau*/
table
{
	grid-column: 1/3;
}

table, th, td
{
	border: 1px solid black;
	border-collapse: collapse;
	padding: 10px;
	text-align: center;
}

thead
{
	background-color: rgb(168, 168, 168);
}

td:first-child
{
	background-color: rgb(168, 168, 168);
}

caption
{
	font-weight: bold;
	margin-bottom: 10px;
	background-color:rgba(102, 102, 102, 0.74);
	font-size: 2rem;
}

/*style corp page inscription*/
.inscription
{
	grid-column: 1/3;
	display: block;
	margin:auto;
}

/*style formulaire inscription*/
form
{
	margin:auto;
}

label
{
	display: block;
	font-weight: bold;
}

fieldset
{
	border: 2px dashed rgb(201, 199, 199);
	background-color: rgba(250, 210, 135, 0.315);
}

legend
{
	font-style: italic;
	margin: auto;
}

/*style des articles*/
article
{
	background-color: white;
	margin: 1rem;
	padding: 1rem;
}

/*style body page evenement*/
#Evenement
{
	grid-template-columns: 250px 1fr;
}

/*style coprs page evenement*/
#evenement
{
	display: block;
	width: 100%;
	grid-column: 2/2;
}

/*style aside page evenement*/
#listEvenement
{
	grid-column: 1/1;
	grid-row: 2/2;
}

/*style des dates des articles*/
.date
{
	background-color:rgba(102, 102, 102, 0.74);
}

/*style sur petits écrans*/
@media screen and (max-width: 750px)
{
	/*redimensionnement des principales zones*/
	body,nav,header,main
	{
		grid-template-columns: 100%;
		grid-column: 1/3;
		width: 100%;
	}

	/*rediriger zone nav et header*/
	nav,header
	{
		flex-direction:column;
	}

	/*rediriger et réagencer zone nav et header*/
	.inNumber
	{
		display: flex;
		flex-direction: column;
	}

	/*rediriger et réagencer les numéros*/
	.numbers
	{
		display: flex;
		justify-content: center;
		flex-direction: column;
		align-items: center;
	}

	/*redimensionner tableau page classement*/
	table
	{
		width: 100%;
	}

	/*redimensionner body page evenement*/
	#Evenement
	{
		grid-template-columns: 125px 1fr;
	}

	/*redimensionner aside, liste d'événements et corps de la page événement*/
	aside,#listEvenement,#evenement
	{
		grid-column: 1/3;
	}
}