/*----- CSS général -----*/



body {
    margin: 0;
    padding: 0;
    background-color: #EA425C;
}


a {
  color: white;  
}

abbr,
.texteGeneral a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

#nomTranslation {
    -webkit-animation: 1s translateName forwards;
    -webkit-animation-delay: 0.5s;
    
}

.nomComplet {
    margin-top: -50px;
}

.headerIndex {
    display: flex;
    justify-content: center;
    background-color: #FFFFFF;
    height: 75%;
    width: 100%;
    margin-bottom: 10px;
}

.titreIndex {
    color: white;
    font-family: "Emilys Candy";
    text-align: center;
    font-size: 30px;
}

.sectionIndex {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.divIndex {
    margin: auto;
    width: 700px;
    opacity: 0;
    -webkit-animation: 1s opacityAppear forwards;
    -webkit-animation-delay: 2s;
}

.divIndex a img {
    vertical-align: text-bottom;
    padding-left: 220px;
    margin-bottom: -10px;
    margin-top: 50px;
}

.divIndex h1:hover {
    font-size: 35px;
}

.titreContact {
    color: white;
    font-family: "Emilys Candy";
    text-align: center;
    font-size: 30px;
}

.sectionContact {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.divContact {
    margin: auto;
    width: 700px;
}

.divContact a img {
    vertical-align: text-bottom;
    padding-left: 220px;
    margin-bottom: -25px;
}

.divContact h1:hover {
    font-size: 35px;
}

main {
    background-color: #EA425C;
    height: 100%;
    width: 100%;
}

section {
    margin-bottom: 30px;
}

.footerIndex {
    background-color: #EA425C;
    height: 100%;
    width: 100%;
    opacity: 0;
    -webkit-animation: 1s opacityAppear forwards;
    -webkit-animation-delay: 2s;
}

footer {
    background-color: #EA425C;
    height: 100%;
    width: 100%;

}

footer p {
    color: white;
    text-align: center;
    font-family: "Gloria Hallelujah";
    font-size: 15px;
}

.headerGeneral {
    display: flex;
    justify-content: center;
    background-color: #FFFFFF;
    height: 100%;
    width: 100%;
}

nav {
    margin-bottom: 50px;
    margin-top: -75px;
}


.menu {
    z-index: 1;
    position: fixed;
    width: 100%;
    height: 10%;
    top: 0;
    margin-left: auto;
    margin-right: auto;
}


nav ul {
    background-color: #FFFFFF;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    list-style: none;
    margin: auto;
}

nav ul li a {
    text-decoration: none;
    font-family: "Gloria Hallelujah";
    font-size: 30px;
    color: #EA425C;
;
}

nav ul li a:hover {
    color: #2C3335;
}


h1 {
    font-family: "Emilys Candy";
    font-size: 40px;
    text-align: center;
    color : white;
}

.photoIdentite {
    opacity: 0.90;
    border: 5px solid black;
    width: 235px;
    height: 425px;
	display:block;
	margin:auto;
}

.photoIdentite:hover {
    opacity: 1;
}

.texteGeneral {
    text-align: left;
	margin-left: 100px;
}

.texteGeneral p {
    font-family: "Gloria Hallelujah";
    font-size: 20px;
    color: white;
    line-height: 200%;
}

.videoJV iframe, .mediaJV img {
    border: 5px solid black;
    opacity: 0.90;
    margin: 25px 100px 25px 100px;
}

.mediaJV {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: row;
}

.mediaJV img {
    width: 650px;
}

.mediaJV img:hover {
    opacity: 1;
}

.videoJV iframe:hover {
    opacity: 1;
}


.divJV p {
    text-align:center;
    font-family: "Gloria Hallelujah";
    font-size: 20px;
    color: white;
	line-height:200%;
}

.videoJV {
    display: flex;
    justify-content: center;
}


.texteML {
    font-family: "Gloria Hallelujah";
    text-align: center;
    font-size: 18px;
    margin-bottom: -0.75%;
    color: white;
}

.bodyML {
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-top: 5%;
    margin-bottom: 5%;
}



/*----- CSS animations -----*/

@-webkit-keyframes opacityAppear {
    0% {
        opacity: 0;
    }

    25% {
        opacity: 0.25;
    }

    50% {
        opacity: 0.5;
    }

    75% {
        opacity: 0.75;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes translateName {
    
    0% {
        transform: translatex(0px);
    }
    20% {
        transform: translateX(100px);
    }

    40% {
        transform: translateX(-100px);
    }

    60% {
        transform: translateX(100px);
    }

    80% {
        transform: translateX(-100px);
    }
    
    100% {
        transform: translateX(0px);
    }
}
/*----- CSS responsive -----*/

@media screen and (max-width: 1280px) {
    .nomComplet {
        width: 80%;
		margin-top: -25px;
		margin-bottom: 25px;
    }
    
    .divIndex {
        width: 350px;
    }
    
    .sectionIndex {
        flex-direction: column;
    }

    .divIndex a img, .divContact a img {
        padding-left: 100px;
    }

    nav ul {
        flex-wrap: wrap;
    }

    nav ul li a {
        font-size: 20px;
    }


    .photoIdentite {
        width: 135px;
        height: 250px;
    }
	
	.texteGeneral {
		margin-left: 50px;
		
	}

    .texteGeneral p {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .general {
        flex-direction: column;
    }
    
    .videoJV iframe {
        width: 300px;
        height: 200px;
    }
    
    
     .mediaJV img {
        width: 300px;
    }
    
    
}