
/*----------------FOOTER----------------*/

footer {
    width: 100%; /*largeur*/
    height: 55px; /*hauteur*/
    margin: auto; /*marge extérieur*/
    display: flex; /*apparition des balises*/
	flex-direction: row; /*direction des contenants*/
	flex-shrink: 0; /*reduction du contenant*/
	background-color: var(--couleur-menu); /*couleur de fond*/
}

footer small {
	margin: auto; /*marge extérieur*/
	font-family: var(--police-texte); /*police type*/
	font-size: var(--taille-police-10); /*police taille*/
	font-style: normal; /*police style*/
	font-weight: normal; /*police poid*/
	text-align: center; /*texte alignement*/
    letter-spacing: 0.2pt; /*espace entre lettre*/
	transition: color 0.5s ease-in-out, text-shadow 0.5s ease-in-out; /*transiton*/
	color: var(--couleur-blanc); /*police couleur*/
}

footer a {
    text-decoration: none; /*texte decoration*/
    color: var(--couleur-blanc); /*police couleur*/
}

footer a:hover {
    text-decoration: underline; /*texte decoration*/
}