/*********************************************
 *  dancing text
 ********************************************/

/* google font subsetting, see Heydon Pickering's: http://www.sitepoint.com/joy-of-subsets-web-fonts/ */
@import url('//fonts.googleapis.com/css?family=Pacifico&text=Pure');
@import url('//fonts.googleapis.com/css?family=Roboto:700&text=css');
@import url('//fonts.googleapis.com/css?family=Kaushan+Script&text=!');

.stage {
    height: 50px;
/*     width: 500px; */
    margin: auto;
    margin-bottom: 25px;
/*     position: absolute; */
    position: relative;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    perspective: 9999px;
    transform-style: preserve-3d;
}

.layer {
/*     width: 100%; */
    height: 100%;
    position: absolute;
    transform-style: preserve-3d;
    animation: ಠ_ಠ 5s infinite alternate ease-in-out -7.5s;
    animation-fill-mode: forwards;
    transform: rotateY(40deg) rotateX(33deg) translateZ(0);
    left: 50%;
    margin-left: attr(data-margin-left);
}

.layer:after {
    font: 50px/0.23 "Pacifico", "Kaushan Script", Futura, "Roboto", "Trebuchet MS", Helvetica, sans-serif;
    content: attr(data-fantastic-content);
    white-space: pre;
    text-align: center;
    height: 100%;
/*     width: 100%; */
    position: absolute;
    top: 0;
    color: whitesmoke;
    letter-spacing: -2px;
    text-shadow: 4px 0 10px rgba(0, 0, 0, 0.13);
}

.layer:nth-child(1):after {
    transform: translateZ(0px);
}

.layer:nth-child(2):after {
    transform: translateZ(-1.5px);
}
.layer:nth-child(3):after {
    transform: translateZ(-3px);
}
.layer:nth-child(4):after {
    transform: translateZ(-4.5px);
}
.layer:nth-child(5):after {
    transform: translateZ(-6px);
}
.layer:nth-child(6):after {
    transform: translateZ(-7.5px);
}
.layer:nth-child(7):after {
    transform: translateZ(-9px);
}
.layer:nth-child(8):after {
    transform: translateZ(-10.5px);
}
.layer:nth-child(9):after {
    transform: translateZ(-12px);
}
.layer:nth-child(10):after {
    transform: translateZ(-13.5px);
}
.layer:nth-child(11):after {
    transform: translateZ(-15px);
}
.layer:nth-child(12):after {
    transform: translateZ(-16.5px);
}
.layer:nth-child(13):after {
    transform: translateZ(-18px);
}
.layer:nth-child(14):after {
    transform: translateZ(-19.5px);
}
.layer:nth-child(15):after {
    transform: translateZ(-21px);
}
.layer:nth-child(16):after {
    transform: translateZ(-22.5px);
}
.layer:nth-child(17):after {
    transform: translateZ(-24px);
}
.layer:nth-child(18):after {
    transform: translateZ(-25.5px);
}
.layer:nth-child(19):after {
    transform: translateZ(-27px);
}
.layer:nth-child(20):after {
    transform: translateZ(-28.5px);
}

.layer:first-child:after {
    color: #fff;
    text-shadow: none;
}

.layer:nth-child(n+10):after {
    -webkit-text-stroke: 3px rgba(0, 0, 0, 0.25);
}

.layer:nth-child(n+11):after {
    -webkit-text-stroke: 15px red;
    text-shadow: 6px 0 6px #00366b, 5px 5px 5px #002951, 0 6px 6px #00366b;
}

.layer:nth-child(n+12):after {
    -webkit-text-stroke: 15px #000;
}

.layer:last-child:after {
    -webkit-text-stroke: 17px rgba(0, 0, 0, 0.1);
}

@keyframes ಠ_ಠ {
  100% {
    transform: rotateY(-40deg) rotateX(-43deg);
  }
}

.lead-bordered {
    border: 3px solid black;
    box-shadow: 2px 2px 12px red;
    padding: 16px;
}

/*********************************************
 *  three color shadow
 ********************************************/

.three-color-shadow{
    font-size: 50px;
/*     font-size: 15rem; */
    text-align: center;
/*     height:90vh; */
/*     line-height: 90vh; */
    color: black!important;
/*     background: #d52e3f; */
/*     font-family: 'Niconne', cursive; */
    font-weight: 700;
    text-shadow: 2px 2px 0px white, 
                4px 4px 0px red;
/*                6px 6px 0px black;
                20px 20px 0px #017e7f, 
                25px 25px 0px #052939, 
                30px 30px 0px #c11a2b, 
                35px 35px 0px #c11a2b, 
                40px 40px 0px #c11a2b, 
                45px 45px 0px #c11a2b;*/
}
