#animation {
    position: relative;
	display: flex;
}

#fond {
	content: url("fond.png");
    width: 100%;
}

#fleches2 {
	content: url("fleches2.png");
	position: absolute;
    width: 22%;
    height: auto;
	left: 65.3%;
	top: 25%;
    animation: rotation 3s infinite linear, frame2 10s infinite linear;
}

#fleches4 {
	content: url("fleches4.png");
	position: absolute;
    width: 22%;
    height: auto;
	left: 65.3%;
	top: 25%;
    animation: rotation 3s infinite linear, frame4 10s infinite linear;
}

#logo {
    content: url("logo.png");
    position: absolute;
    width: 100%;
    height: auto;
    animation: fade_logo 10s infinite linear;
}

#texte_en, #texte_fr {
    position: absolute;
	width: 100%;
    height: auto;
    animation: fade_texte 10s infinite linear;
}

#texte_en {
    content: url("texte_en.png");
}

#texte_fr {
    content: url("texte_fr.png");
}

@keyframes frame2 {
    0% { opacity: 1; }
	10% { opacity: 1; }
    20% { opacity: 0; }
    80% { opacity: 0; }
	90% { opacity: 1; }
    100% { opacity: 1; }
}

@keyframes frame4 {
    0% { opacity: 0; }
	10% { opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
	90% { opacity: 0; }
    100% { opacity: 0; }
}

@keyframes rotation {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes fade_logo {
    0% { opacity: 0; }
    10% { opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    90% { opacity: 0; }
    100% { opacity: 0; }
}

@keyframes fade_texte {
    0% { opacity: 0; }
    20% { opacity: 0; }
    30% { opacity: 1; }
    80% { opacity: 1; }
    90% { opacity: 0; }
    100% { opacity: 0; }
}