@import url(https://fonts.googleapis.com/css?family=Playfair+Display:400,400italic);
.wobble-body {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-perspective: 500px;
    perspective: 500px;
    height: 100vh;
    overflow: hidden;
}

.wobble-h1 {
    -webkit-animation: wobble 5s ease-in-out infinite;
    animation: wobble 5s ease-in-out infinite;
    padding-bottom: 2em;
}

@-webkit-keyframes wobble {
    from, to {
        -webkit-transform: rotateY(-45deg);
        transform: rotateY(-45deg);
    }
    50% {
        -webkit-transform: rotateY(45deg);
        transform: rotateY(45deg);
    }
}

@keyframes wobble {
    from, to {
        -webkit-transform: rotateY(-45deg);
        transform: rotateY(-45deg);
    }
    50% {
        -webkit-transform: rotateY(45deg);
        transform: rotateY(45deg);
    }
}
.wobble-span {
    font: italic 3vw Playfair Display;
    -webkit-animation: 5s ease-in-out infinite;
    animation: 5s ease-in-out infinite;
    color: transparent;
    text-shadow: 0 0 1px #000;
}
span:nth-child(-n+3) {
    -webkit-animation-delay: -2.5s;
    animation-delay: -2.5s;
}

span:nth-child(1),
span:nth-last-child(1) {
    -webkit-animation-name: blur-1;
    animation-name: blur-1;
}

@-webkit-keyframes blur-1 {
    50% {
        text-shadow: 0 0 0.15em #000;
    }
}

@keyframes blur-1 {
    50% {
        text-shadow: 0 0 0.15em #000;
    }
}
span:nth-child(2),
span:nth-last-child(2) {
    -webkit-animation-name: blur-2;
    animation-name: blur-2;
}

@-webkit-keyframes blur-2 {
    50% {
        text-shadow: 0 0 0.075em #000;
    }
}

@keyframes blur-2 {
    50% {
        text-shadow: 0 0 0.075em #000;
    }
}
span:nth-child(3),
span:nth-last-child(3) {
    -webkit-animation-name: blur-3;
    animation-name: blur-3;
}

@-webkit-keyframes blur-3 {
    50% {
        text-shadow: 0 0 0.05em #000;
    }
}

@keyframes blur-3 {
    50% {
        text-shadow: 0 0 0.05em #000;
    }
}




.animatedGen {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes bounceOutDown {
    0% { -webkit-transform: translateY(0); }
    20% { -webkit-transform: translateY(-20px); }
    20% { transform: translateY(-35px); }
    99% { opacity: 1;}
    100% { -webkit-transform: translateY(2000px); }
}
@-moz-keyframes bounceOutDown {
    0% { -moz-transform: translateY(0); }
    20% { -moz-transform: translateY(-20px); }
    20% { transform: translateY(-35px); }
    99% { opacity: 1;}
    100% { -moz-transform: translateY(2000px); }
}
@-ms-keyframes bounceOutDown {
     0% {-ms-transform: translateY(0); }
     20% { -ms-transform: translateY(-20px); }
     20% { transform: translateY(-35px); }
     99% { opacity: 1;}
     100% { -ms-transform: translateY(2000px); }
 }
@-o-keyframes bounceOutDown {
    0% {-o-transform: translateY(0); }
    20% { -o-transform: translateY(-20px); }
    20% { transform: translateY(-35px); }
    99% { opacity: 1;}
    100% { -o-transform: translateY(2000px); }
}
@keyframes bounceOutDown {
    0% { transform: translateY(0); }
    20% { transform: translateY(-35px);}
    99% { opacity: 1;}
    100% { opacity: 0; transform: translateY(2000px); }
}

.bounceOutDown {
    -webkit-animation-name: bounceOutDown;
    animation-name: bounceOutDown;
}