/* Style CSS pour le retour en haut de la page */

/* Défilement doux */
html {
	scroll-behavior: smooth;
}

/* Retour en haut de la page */
#scrollUp.fixed-right {
	position: fixed;
	right: 10px;
	bottom: 10px;
	opacity: 0.2;
}

/* Effets de survol retour en haut de la page */
.imgtop:hover {
	transform: translate(0px,-5px); transition-duration: 0.3s;
}