.body
{
	background-color: var(--fondStandard); 
	color: var(--couleurStandard);
}

.corps
{
	margin-top: 1rem;
	padding: 0.5rem;
	text-align: center;
	display: flex;
	justify-content: center;
	font-family: 'Roboto', sans-serif;      
	font-size: 2rem;
}
.h3Lien{
	font-size: 2rem;
}
.ulLiens{
	display: flex;
	flex-direction: column;
	align-content: center;
	justify-content: center;
	margin: 0 1rem;

}
.liLiens{
	display: flex;
	padding: 0.2rem 0.5rem;
}


.ilien a {
	color: var(--couleurStandard);
  	transition-property: color;
  	transition-duration: 0.5s;
  	transition-timing-function: linear;
}


.liLiens:nth-child(odd) {
	color: red;
	font-weight: bold;
} 

.liLiens:nth-child(even) {
	color: white;
}


.liLiens:nth-child(odd) a{
	color: red;
	font-weight: bold;
} 

.liLiens:nth-child(even) a{
	color: white;
}

.liLiens a:hover{
	color: green;
}

table
{
	border-collapse: collapse; 
	margin: auto;
}
tr{
	margin:0.5rem 0;
}

th
{
	text-align: center;
}
td
{
	text-align: left;
}
.centre{
	text-align: center;
}
.gauche{
	text-align: left;
}

@media screen and (max-width: 760px){
 
	.corps{
		font-size: 1rem;
	}	
	.h3Lien{
		font-size: 1rem;
	}
}