.textborder {
    text-shadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;
    color: white;
    font-size: 1em;
}

.textborder2 {
    filter: drop-shadow(1px 1px 0 black) drop-shadow(-1px 1px 0 black) drop-shadow(0 -1px 0 black) drop-shadow(1px 0 black);
    color: white;
    font-size: 1em;
    z-index: 10
}

.float {
    text-shadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000, 0 0;
    font-style: italic;
    font-size: 2em;
    font-weight: bold;
    color: #fff;
    animation-name: floating;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

@keyframes floating {
    0% {
        transform: translate(0, 0px);
    }

    50% {
        transform: translate(0, 15px);
    }

    100% {
        transform: translate(0, -0px);
    }
}

#bubble {
    color: #d4069d;
    font-family: Times;
    font-size: 20px;
    font-weight: bold;
}

#pop {
    text-shadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000, 0 0;
    font-style: italic;
    font-size: 2em;
    font-weight: bold;
    color: #fff;
    -webkit-animation: pop 1s ease-in-out infinite alternate;
    animation: pop 1s ease-in-out infinite alternate;
    -moz-animation: pop 1s ease-in-out infinite alternate;
}

@keyframes pop {
    from {
        transform: scale(0.95)
    }

    50% {
        transform: scale(1)
    }

    to {
        transform: scale(0.95)
    }
}

@-webkit-keyframes pop {
    from {
        -webkit-transform: scale(0.95)
    }

    50% {
        -webkit-transform: scale(1)
    }

    to {
        -webkit-transform: scale(0.95)
    }
}

.bouncy1 {
    font-size: 1em;
    z-index: 99;
    animation: bounce 2s infinite;
    animation-timing-function: cubic-bezier(0.25, 0.85, 0.4, 1);
}

.letterone {
    animation-delay: 0s;
    display: inline-block;
}

.lettertwo {
    animation-delay: 0.2s;
    display: inline-block;
}

.letterthree {
    animation-delay: 0.4s;
    display: inline-block;
}

.letterfour {
    animation-delay: 0.6s;
    display: inline-block;
}

.letterfive {
    animation-delay: 0.8s;
    display: inline-block;
}

.lettersix {
    animation-delay: 1s;
    display: inline-block;
}

.letterseven {
    animation-delay: 1.2s;
    display: inline-block;
}

@keyframes bounce {
    0% {
        transform: scale(1, 1) translateY(0);
    }

    10% {
        transform: scale(1.1, .9) translateY(0);
    }

    30% {
        transform: scale(.9, 1.1) translateY(-30px);
    }

    50% {
        transform: scale(1.05, .95) translateY(0);
    }

    60% {
        transform: scale(1, 1) translateY(-4px);
    }

    100% {
        transform: scale(1, 1) translateY(0);
    }
}

.bouncy2 {
    font-size: 2em;
    z-index: 99;
    color: white;
    filter: drop-shadow(1px 1px 0 black) drop-shadow(-1px 1px 0 black) drop-shadow(0 -1px 0 black) drop-shadow(2px 0 black);
    animation: bounce2 2s infinite;
    animation-timing-function: cubic-bezier(0.25, 0.85, 0.4, 1);
}

.letterone {

    animation-delay: 0s;
    display: inline-block;
}

.lettertwo {

    animation-delay: 0.1s;
    display: inline-block;
}

.letterthree {

    animation-delay: 0.15s;
    display: inline-block;
}

.letterfour {

    animation-delay: 0.2s;
    display: inline-block;
}

.letterfive {

    animation-delay: 0.25s;
    display: inline-block;
}

.lettersix {

    animation-delay: 0.3s;
    display: inline-block;
}

@keyframes bounce2 {
    0% {
        transform: scale(1, 1) translateY(0);
    }

    10% {
        transform: scale(1.1, .9) translateY(0);

    }

    30% {
        transform: scale(.9, 1.1) translateY(-30px);
        transform: rotate(-10deg);
    }

    50% {
        transform: scale(1.05, .95) translateY(0);
        transform: rotate(10deg);
    }

    60% {
        transform: scale(1, 1) translateY(-4px);
        transform: rotate(-10deg);
    }

    100% {
        transform: scale(1, 1) translateY(0);
    }
}

#text08 {
    text-shadow: -1px -1px 0 #F2E9E4, 1px -1px 0 #F2E9E4, -1px 1px 0 #F2E9E4, 1px 1px 0 #F2E9E4;
    -webkit-text-stroke: 2px #9a8c98;
    filter: drop-shadow(0px 1px #9a8c98) drop-shadow(0 -1px #9a8c98) drop-shadow(1px 0 #9a8c98) drop-shadow(-1px 0 #9a8c98);
}

@keyframes glow {
    0% {
        text-shadow: 0 0 15px blue;
    }

    50% {
        text-shadow: none;
    }

    100% {
        text-shadow: 0 0 15px blue;
    }
}

@-webkit-keyframes glow {
    0% {
        text-shadow: 0 0 15px blue;
    }

    50% {
        text-shadow: 0 0 0;
    }

    100% {
        text-shadow: 0 0 15px blue;
    }
}

#glow {
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #000;
    font-weight: bold;
    font-size: 2em;
    -webkit-animation: glow 2.0s linear infinite;
    -moz-animation: glow 2.0s linear infinite;
    -ms-animation: glow 2.0s linear infinite;
    -o-animation: glow 2.0s linear infinite;
    animation: glow 2.0s linear infinite;
}

#shakey {
    padding: 4px;
    animation: shake 0.5s infinite;
}

@keyframes shake {
    0% {
        transform: translate(1px, 1px) rotate(0deg);
    }

    10% {
        transform: translate(-1px, -2px) rotate(-1deg);
    }

    20% {
        transform: translate(-3px, 0px) rotate(1deg);
    }

    30% {
        transform: translate(3px, 2px) rotate(0deg);
    }

    40% {
        transform: translate(1px, -1px) rotate(1deg);
    }

    50% {
        transform: translate(-1px, 2px) rotate(-1deg);
    }

    60% {
        transform: translate(-3px, 1px) rotate(0deg);
    }

    70% {
        transform: translate(3px, 1px) rotate(-1deg);
    }

    80% {
        transform: translate(-1px, -1px) rotate(1deg);
    }

    90% {
        transform: translate(1px, 2px) rotate(0deg);
    }

    100% {
        transform: translate(1px, -2px) rotate(0deg);
    }
}

.candy {
    --color1: #1FD537;
    --color2: #E40010;

    -webkit-text-stroke: 1px black;
    background: repeating-linear-gradient(45deg,
            var(--color1),
            var(--color1) 30px,
            var(--color2) 30px,
            var(--color2) 60px);

    background-clip: text;
    color: transparent;
    -webkit-background-clip: text;
    font-size: 3em;
    animation: 40s linear 0s infinite move;
}

@keyframes move {
    from {
        background-position: 0px;
    }

    to {
        background-position: 1000px;
    }
}

#scream {
    animation-name: hi;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    line-height: 0em;
    bottom: -5px;
    position: relative;
    font-size: 2rem;
    text-align: center;
    font-family: sant joan;
}

@keyframes hi {
    0% {
        transform: rotate(5deg);
    }

    50% {
        transform: rotate(-5deg);
    }

    100% {
        transform: rotate(5deg);
    }
}

.scripted {
    filter: drop-shadow(0 3px #9a6fb0) drop-shadow(2px 0 #9a6fb0) drop-shadow(0 -1px #ffa9c2) drop-shadow(-1px 0 #9a6fb0) drop-shadow(0 5px white) drop-shadow(5px 0 white) drop-shadow(0 -5px white) drop-shadow(-5px 0 white) drop-shadow(1px 1px 0 rgba(172, 172, 172, 0.6)) drop-shadow(1px 1px 0 rgba(172, 172, 172, 0.6)) drop-shadow(0 0 2px #424242);
    color: #FDE6FF;
    font-family: ecoder;
    font-size: 1rem;
}

@font-face {
    font-family: ecoder;
    src: url(https://dl.dropbox.com/s/2wrgv8i3jsqkv6p/Ecoder-Italic.otf);
}

.txt-gradienttext {
    background: linear-gradient(to top, #FFFDFE 2%, #FF78B1 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 0.5px;
    -webkit-text-stroke-color: #FE62B6;
    font-size: 2em;
}

#text12 {
    color: #000000;
    font-family: 'Arial', sans-serif;
    font-size: 1em;
    line-height: 1.5;
    font-weight: 400;
}

td {
    text-align: center;
    padding-bottom: 50px;
}

@keyframes textShadow {
    0% {
        text-shadow: 0.4389924193300864px 0 1px rgba(255, 0, 0, 0.5), -0.4389924193300864px 0 1px rgba(0, 255, 255, 0.3), 0 0 3px;
    }

    5% {
        text-shadow: 2.7928974010788217px 0 1px rgba(255, 0, 0, 0.5), -2.7928974010788217px 0 1px rgba(0, 255, 255, 0.3), 0 0 3px;
    }

    10% {
        text-shadow: 0.02956275843481219px 0 1px rgba(255, 0, 0, 0.5), -0.02956275843481219px 0 1px rgba(0, 255, 255, 0.3), 0 0 3px;
    }

    15% {
        text-shadow: 0.40218538552878136px 0 1px rgba(255, 0, 0, 0.5), -0.40218538552878136px 0 1px rgba(0, 255, 255, 0.3), 0 0 3px;
    }

    20% {
        text-shadow: 3.4794037899852017px 0 1px rgba(255, 0, 0, 0.5), -3.4794037899852017px 0 1px rgba(0, 255, 255, 0.3), 0 0 3px;
    }

    25% {
        text-shadow: 1.6125630401149584px 0 1px rgba(255, 0, 0, 0.5), -1.6125630401149584px 0 1px rgba(0, 255, 255, 0.3), 0 0 3px;
    }

    30% {
        text-shadow: 0.7015590085143956px 0 1px rgba(255, 0, 0, 0.5), -0.7015590085143956px 0 1px rgba(0, 255, 255, 0.3), 0 0 3px;
    }

    35% {
        text-shadow: 3.896914047650351px 0 1px rgba(255, 0, 0, 0.5), -3.896914047650351px 0 1px rgba(0, 255, 255, 0.3), 0 0 3px;
    }

    40% {
        text-shadow: 3.870905614848819px 0 1px rgba(255, 0, 0, 0.5), -3.870905614848819px 0 1px rgba(0, 255, 255, 0.3), 0 0 3px;
    }

    45% {
        text-shadow: 2.231056963361899px 0 1px rgba(255, 0, 0, 0.5), -2.231056963361899px 0 1px rgba(0, 255, 255, 0.3), 0 0 3px;
    }

    50% {
        text-shadow: 0.08084290417898504px 0 1px rgba(255, 0, 0, 0.5), -0.08084290417898504px 0 1px rgba(0, 255, 255, 0.3), 0 0 3px;
    }

    55% {
        text-shadow: 2.3758461067427543px 0 1px rgba(255, 0, 0, 0.5), -2.3758461067427543px 0 1px rgba(0, 255, 255, 0.3), 0 0 3px;
    }

    60% {
        text-shadow: 2.202193051050636px 0 1px rgba(255, 0, 0, 0.5), -2.202193051050636px 0 1px rgba(0, 255, 255, 0.3), 0 0 3px;
    }

    65% {
        text-shadow: 2.8638780614874975px 0 1px rgba(255, 0, 0, 0.5), -2.8638780614874975px 0 1px rgba(0, 255, 255, 0.3), 0 0 3px;
    }

    70% {
        text-shadow: 0.48874025155497314px 0 1px rgba(255, 0, 0, 0.5), -0.48874025155497314px 0 1px rgba(0, 255, 255, 0.3), 0 0 3px;
    }

    75% {
        text-shadow: 1.8948491305757957px 0 1px rgba(255, 0, 0, 0.5), -1.8948491305757957px 0 1px rgba(0, 255, 255, 0.3), 0 0 3px;
    }

    80% {
        text-shadow: 0.0833037308038857px 0 1px rgba(255, 0, 0, 0.5), -0.0833037308038857px 0 1px rgba(0, 255, 255, 0.3), 0 0 3px;
    }

    85% {
        text-shadow: 0.09769827255241735px 0 1px rgba(255, 0, 0, 0.5), -0.09769827255241735px 0 1px rgba(0, 255, 255, 0.3), 0 0 3px;
    }

    90% {
        text-shadow: 3.443339761481782px 0 1px rgba(255, 0, 0, 0.5), -3.443339761481782px 0 1px rgba(0, 255, 255, 0.3), 0 0 3px;
    }

    95% {
        text-shadow: 2.1841838852799786px 0 1px rgba(255, 0, 0, 0.5), -2.1841838852799786px 0 1px rgba(0, 255, 255, 0.3), 0 0 3px;
    }

    100% {
        text-shadow: 2.6208764473832513px 0 1px rgba(255, 0, 0, 0.5), -2.6208764473832513px 0 1px rgba(0, 255, 255, 0.3), 0 0 3px;
    }
}

.rgb {
    transition: .3s;
}

.rgb:hover {
    animation: textShadow 1.6s infinite;
    transition: .3s;
}

.blinky {
    animation: blink 1s step-end infinite;
    padding-block: inline;
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.neon-text {
    color: #fff;
    text-shadow:
        0 0 5px #fff,
        0 0 10px #fff,
        0 0 20px #ff4da6,
        0 0 40px #ff4da6,
        0 0 80px #ff4da6,
        0 0 90px #ff4da6,
        0 0 100px #ff4da6,
        0 0 150px #ff4da6;
}

.text-3d {
    color: #000000;
    text-shadow:
        1px 1px #f2f2f2,
        2px 2px #f2f2f2,
        3px 3px #f2f2f2,
        4px 4px #f2f2f2,
        5px 5px #ccc,
        6px 6px #ccc,
        7px 7px #ccc;
}

.typewriter {
    overflow: hidden;
    border-right: .15em solid black;
    white-space: nowrap;
    margin: 0 auto;
    letter-spacing: .15em;
    animation: typing 3.5s steps(30, end), blink-caret .5s step-end infinite;
}

@keyframes typing {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

@keyframes blink-caret {

    from,
    to {
        border-color: transparent
    }

    50% {
        border-color: black
    }
}

.rainbow-text {
    background: linear-gradient(to right, red, orange, yellow, green, blue, indigo, violet);
    background-clip: text;
    color: transparent;
    font-size: 1em;
}

.pulse-text {
    animation: pulse 1.5s infinite;
    font-size: 2em;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

.blur-text {
    color: transparent;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    font-size: 2em;
}

.rotate-text {
    display: inline-block;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.multi-shadow-text {
    color: #000000;
    text-shadow:
        2px 2px 0px #ff7eb3,
        4px 4px 0px #ff7eb3,
        6px 6px 0px #ff7eb3,
        8px 8px 0px #ff7eb3,
        10px 10px 0px #ff7eb3;
}

.break-text {
    position: relative;
    display: inline-block;
}

.break-text::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 0, 0, 0.5), rgba(255, 255, 255, 0.5), rgba(0, 13, 255, 0.5));
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    animation: break 2s infinite;
}

@keyframes break {

    0%,
    100% {
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    }

    50% {
        clip-path: polygon(50% 0%, 50% 0%, 50% 100%, 50% 100%);
    }
}

.sliding-text {
    display: inline-block;
    animation: slide 3s infinite ease-in-out;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(20px);
    }

    100% {
        transform: translateX(0);
    }
}

.invert-text {
    transition: filter 0.5s ease;
    color: #1FD537;
}

.invert-text:hover {
    filter: invert(1);
}

.animated-gradient-text {
    background: linear-gradient(90deg, #ff7eb3, #002aff, #9d00ff);
    background-clip: text;
    color: transparent;
    background-size: 200% auto;
    animation: gradient 3s infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.expand-text {
    display: inline-block;
    animation: expand 2s infinite ease-in-out;
}

@keyframes expand {

    0%,
    100% {
        transform: scaleX(1);
    }

    50% {
        transform: scaleX(1.5);
    }
}

.color-cycle-text {
    background: linear-gradient(90deg, red, orange, yellow, green, blue, indigo, violet);
    background-clip: text;
    color: transparent;
    background-size: 200% auto;
    animation: colorCycle 4s infinite;
}

@keyframes colorCycle {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

.rainbow-shadow-text {
    color: #ffffff;
    text-shadow:
        2px 2px 5px red,
        4px 4px 5px orange,
        6px 6px 5px yellow,
        8px 8px 5px green,
        10px 10px 5px blue,
        12px 12px 5px indigo,
        14px 14px 5px violet;
}

.mirror-text {
    position: relative;
    display: inline-block;
}

.mirror-text::after {
    content: attr(data-text);
    position: absolute;
    top: 100%;
    left: 0;
    transform: scaleY(-1);
    opacity: 0.5;
}

.vertical-flip-text {
    display: inline-block;
    animation: verticalFlip 2s infinite;
}

@keyframes verticalFlip {

    0%,
    100% {
        transform: rotateX(0deg);
    }

    50% {
        transform: rotateX(180deg);
    }
}

.fill-color-text {
    position: relative;
    overflow: hidden;
}

.fill-color-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, #ff7eb3, transparent);
    animation: fillColor 3s infinite;
}

@keyframes fillColor {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.double-shadow-text {
    color: #fff;
    text-shadow:
        2px 2px 5px rgba(0, 0, 0, 0.5),
        -2px -2px 5px rgba(0, 0, 0, 0.5);
}