<style>



body {
    background-color: #000000;
}

#backgroundTaille {
    height: 950px;
    position: absolute;
    top: -80px;
    left: 0;
    z-index: 0;
}

/* TITRE SITE WEB */
.TitreSite,
.TitreSiteUnder,
.TitreSiteUnder2,
.JeanDeLaFontaine,
.JeanDeLaFontaineUnder,
.Codplay,
.CodplayUnder,
.imagineDragon,
.imagineDragonUnder,
.martin {
    position: absolute;
    color: #ffffff;
    font-family: Arial, Calibri;
    z-index: 1;
    animation-duration: 2.5s;
    animation-timing-function: ease-out;
	visibility: hidden;
}




.TitreSite {
    top: 40px;
    right: 240px;
    font-size: 60px;
    animation-name: fall;
	animation-fill-mode: forwards;	
    animation-delay: 0.5s;
}
.TitreSiteUnder {
    top: 53px;
    right: 225px;
    font-size: 60px;
    animation-name: fall;
	animation-fill-mode: forwards;	
    animation-delay: 1.2s;
}
.TitreSiteUnder2 {
    top: 53px;
    right: 592px;
    font-size: 60px;
    animation-name: fall;
	animation-fill-mode: forwards;	
    animation-delay: 1.4s;
}
.martin {
	top: 130px;
    right: 340px;
    font-size: 20px;
    animation-name: fall;
	animation-fill-mode: forwards;
    animation-delay: 1.5s;
}






.JeanDeLaFontaine {
    top: 200px;
    left: 330px;
    font-size: 25px;
    animation-name: fall;
	animation-fill-mode: forwards;
    animation-delay: 1s;
}
.JeanDeLaFontaineUnder {
    top: 210px;
    left: 330px;
    font-size: 25px;
    animation-name: fall;
	animation-fill-mode: forwards;
    animation-delay: 1.7s;
}




.Codplay {
    top: 260px;
    left: 280px;
    font-size: 25px;
    animation-name: fall;
	animation-fill-mode: forwards;
    animation-delay: 1.7s;
}
.CodplayUnder {
    top: 270px;
    left: 278px;
    font-size: 25px;
    animation-name: fall;
	animation-fill-mode: forwards;
    animation-delay: 2.3s;
}






.imagineDragon {
	top: 320px;
    left: 235px;
    font-size: 25px;
    animation-name: fall;
	animation-fill-mode: forwards;
    animation-delay: 1.3s;
}
.imagineDragonUnder {
	top: 330px;
    left: 235px;
    font-size: 25px;
    animation-name: fall;
	animation-fill-mode: forwards;
    animation-delay: 1.8s;
}





/* ANIMATIONS ET CONVENTIONS */
a {
    text-decoration: none;
    color: #ffffff;
}

@keyframes fall {
    from {
        transform: translateY(-100%);
        opacity: 0;
		
    }
    to {
        transform: translateY(0);
        opacity: 1;
		visibility: visible;
    }
}



</style>