@import url('https://fonts.googleapis.com/css?family=Exo+2');

/*body {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    overflow: hidden;*/
/*    !*color: #fff;*!*/
/*    !*font-family: 'Exo 2';*!*/
/*    !*font-size: 24px;*!*/
/*    animation: fadeIn 500ms reverse;*/
/*}*/
.tang {
    background-image: linear-gradient(120deg, #34e0f0 0%, rgba(180, 0, 255, 0.56) 100%);
    border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
    width: 6.7rem;
    height: 6.7rem;
    animation: morph 3s linear infinite;
    transform-style: preserve-3d;
    outline: 1px solid transparent;
    will-change: border-radius;
    z-index: -99;
}

.tang:before,
.tang:after {
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
    box-shadow: 5px 5px 89px rgba(0, 102, 255, 0.21);
    will-change: border-radius, transform, opacity;
    animation-delay: 200ms;
    background-image: linear-gradient(120deg, rgba(170,208,239, .55) 0%, rgba(170,208,239, .89) 100%);
    z-index: -99;
}

.tang:before {
    animation: morph 3s linear infinite;
    opacity: .21;
    animation-duration: 1.5s;
}

.tang:after {
    animation: morph 3s linear infinite;
    animation-delay: 400ms;
    opacity: .89;
    /*content: "What'cSS up?";*/
    line-height: 120px;
    text-indent: -21px;
}


@keyframes morph {
    0%, 100% {
        border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
        transform: translate3d(0, 0, 0) rotateZ(0.01deg);
    }
    34% {
        border-radius: 70% 30% 46% 54% / 30% 29% 71% 70%;
        transform: translate3d(0, 5px, 0) rotateZ(0.01deg);
    }
    50% {
        opacity: .89;
        transform: translate3d(0, 0, 0) rotateZ(0.01deg);
    }
    67% {
        border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%;
        transform: translate3d(0, -3px, 0) rotateZ(0.01deg);
    }
}

@keyframes fadeIn {
    100% {
        transform: scale(1.03);
        opacity: 0;
    }
}