@charset "UTF-8";
/* CSS Document */

path, polygon { 
				fill: #000;
       	fill-opacity: 0; 
				stroke: #ebcd13; 
				stroke-width: 0;
				stroke-opacity: 0.5;
				stroke-linecap: square;
    }

path:hover, polygon:hover {
				fill: #fff;
       	fill-opacity: 0; 
				transition: stroke-width 0.25s ease-out;
				stroke-width: 15;	
				stroke-opacity: 1;
				mix-blend-mode: hard-light;
				stroke-dasharray: 2000;
  			stroke-dashoffset: 2000;
  			animation: dash 0.3s linear forwards;			
    }

@keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
}

body {
	background-image: url("../image/salon_virtuel-lp.jpg");
	background-size: 100% auto;
	background-repeat: no-repeat;
}