/*
Theme Name: Dixionline Theme
Theme URI: https://dixionline.com
Author: Dixionline
Theme URI: https://dixionline.com
Template: hello-elementor
Version: 1.0
*/

/*
    Add your custom styles here
*/

/*DEFINITION ANIMATION BADGE BAS A DROITE*/
#badge #texte, #menu #tentacules{
	transform-origin: center center;
	animation :  rotateBadge 24s infinite linear
}

/**/
.hover-spacing a{
	transition : letter-spacing 300ms linear;
}
.hover-spacing:hover a{
	letter-spacing:5px!important;
}

/*ANIMATION DU BADGE*/
@keyframes rotateBadge {
    0% {
        transform : rotate(0);
    }
   	100% {
        transform: rotate(1turn);
    }
}

