/* COULEUR DE FOND */
.background{
    background: linear-gradient(-45deg, #44B2A8, #04818E, #B5E8DE, #ff4529);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
	
}

/* LE TEMPS DU DEGRADER */
@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

/* EFFET DE KOMUGI */
.ml15 {
    font-weight: 800;
    text-transform: uppercase;
	display: flex;
  }
  
  .ml15 .word {
    display: inline-block;
	margin-left: 0.5em;
}

.ko{
	margin-top: 10em;
	margin-right: 1em;
}

.mu{
	margin-top: 3.5em;
	margin-right: 1em;
}

.gi{
	margin-top: 0em;
}

/* RESPONSIVE TABLETTE */
@media screen and (max-width: 768px){
	
	.img_header img {
		display: none;
	}

}

/* RESPONSIVE PHONE */
@media screen and (max-width: 434px){


	.ko{
		margin-top: 5em;
		margin-left: 1em;
		z-index: 1;
	}

	.mu{
		margin-top: 2em;

	}

	.ko img{
		height: 7em;
	}

	.mu img{
		height: 7em;
	}

	.gi img{
		height: 5em;
	}
	
}

