/* CSS Document */

/* effet Arrow */
.arrow{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.arrow span{
    display: block;
    width: 30px;
    height: 30px;
    border-bottom: 5px solid #FFF;
    border-right: 5px solid #FFF;
    transform: rotate(45deg);
    margin: -10px;
    animation: animate 2s infinite;
}
.arrow span:nth-child(2){
    animation-delay: -0.2s;
}
.arrow span:nth-child(3){
    animation-delay: -0.4s;
}
@keyframes animate {
    0%{
        opacity: 0;
        transform: rotate(45deg) translate(-20px,-20px);
    }
    50%{
        opacity: 1;
    }
    100%{
        opacity: 0;
        transform: rotate(45deg) translate(20px,20px);
    }
}


/* pop over */
.popOver {
    /*
    height: 100%;
    width: 100%;
    position: fixed;
    */
    background-color: transparent;
    -webkit-animation: bummer 2s;
    animation: bummer 2s;
    -webkit-transform: scale(0,0); 
    transform: scale(0,0);
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards; /* Add this so that your modal doesn't 
                                      close after the animation completes */
}

@keyframes fadeIn { 
  from { opacity: 0; } 
}

.popOver2 {
    /*animation: crescendo 1.5s alternate infinite ease-in;*/
    animation: fadeIn 2s infinite alternate;
    /*font-size: 5em;*/
    font-family: "Righteous", cursive;
}
/*
@keyframes crescendo {
  0%   {transform: scale(.8);}
  100% {transform: scale(1.5);}
}
*/


/* effet texte */
.hello-simple {
	 font-size: 2em;
	 font-family: "Righteous", cursive;
}
.hello {
	 position: absolute;
	 top: 0%;
	 left: 50%;
	 transform: translate(-50%, -50%);
	 font-size: 5em;
	 animation-name: wave;
	 animation-iteration-count: infinite;
	 animation-timing-function: ease-in-out;
	 font-family: "Righteous", cursive;
	 -webkit-text-stroke-width: 3px;
	 -webkit-text-stroke-color: black;
}
 .hello:nth-of-type(1) {
	 animation-duration: 2s;
	 animation-delay: 0.55s;
}
 .hello:nth-of-type(2) {
	 animation-duration: 2s;
	 animation-delay: 0.3s;
}
 .hello:nth-of-type(3) {
	 animation-duration: 2s;
	 animation-delay: 0.05s;
}
 .hello:nth-of-type(4) {
	 animation-duration: 2s;
	 animation-delay: -0.2s;
}
 @keyframes wave {
	 40%, 50% {
		 transform: translate(-50%, -65%) scale(1.05);
	}
	 0%, 90%, 100% {
		 transform: translate(-50%, -45%) scale(0.95);
	}
}
 