
.animate-charcter
{
   text-transform: uppercase;
  background-image: linear-gradient(
    90deg,
    rgb(193,41,227) 0%,
    rgb(150,81,200) 33%,
    rgb(193,71,233) 66%,
    rgb(229,184,244) 100%
  );
  background-size: auto auto;
  background-clip: border-box;
  background-size: 200% auto;
  color: #fff;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 2s linear infinite;
  display: inline-block;
      font-size: 190px;
}

@keyframes textclip {
  to {
    background-position: 200% center;
  }
}



.content {
    padding-bottom: 8%;
    padding-top: 5%;
}
.content1 {
  padding-bottom: 8%;
  padding-top: 5%;
}
  
.content p {
    color: #000000;
    font-size: 3.5vmax;
    font-family: 'Open Sans Condensed', 'sans-serif';
    position: absolute;
}

.content1 p {
  color: #000000;
  font-size: 3.5vmax;
  font-family: 'Open Sans Condensed', 'sans-serif';
  position:sticky;
}
  
.content p:nth-child(1) {
    color: transparent;
    -webkit-text-stroke: 1px #cf74fa;
}
  
.content p:nth-child(2) {
    color: #cf74fa;
    animation: animate 4s ease-in-out infinite;
}
  
@keyframes animate {
0%,
100% {
    clip-path: polygon(
    0% 45%,
    16% 44%,
    33% 50%,
    54% 60%,
    70% 61%,
    84% 59%,
    100% 52%,
    100% 100%,
    0% 100%
    );
}

50% {
    clip-path: polygon(
    0% 60%,
    15% 65%,
    34% 66%,
    51% 62%,
    67% 50%,
    84% 45%,
    100% 46%,
    100% 100%,
    0% 100%
    );
    }
}




#text{
text-align:center;
position:relative;
top:200px;
font-size:7em;

}
.text0,.text2{
    color: black;
-webkit-text-fill-color: white; /* Will override color (regardless of order) */
-webkit-text-stroke-width: 1px;
-webkit-text-stroke-color: black;
}
.text1,.text3{
    color: black;
-webkit-text-fill-color: #bc0000; /* Will override color (regardless of order) */
-webkit-text-stroke-width: 1px;
-webkit-text-stroke-color: black;
}
#dummy{
position:relative;
height:100vh;
width:100%;
}
#back{
position:relative;
padding-top:50%;
text-align:center;
font-size:1.5em;
cursor:pointer;
}

@media only screen and (max-width: 600px) {
#back{
    cursor:none;
    font-size:0.8em;
}
#text{
        top:70px;
    font-size:2.25em;
}

}
   
/* TEXT REVEAL */


.reveal {
  display:inline-block;
  white-space:nowrap;
}

.reveal:first-of-type {    
  animation: showup 7s infinite;
  }
  
.reveal:last-of-type {
  width:0px;
  animation: reveal 7s infinite;
}

.reveal:last-of-type span {
  margin-left:0px;
  animation: slidein 7s infinite;
}

@keyframes showup {
    0% {opacity:0;}
    20% {opacity:1;}
    80% {opacity:1;}
    100% {opacity:0;}
}

@keyframes slidein {
    0% { margin-left:-50px; }
    20% { margin-left:-50px; }
    35% { margin-left:100px; }
    100% { margin-left:100px; }
}

@keyframes reveal {
    0% {opacity:0;width:0px;}
    20% {opacity:1;width:0px;}
    30% {width:355px;}
    80% {opacity:1;}
    100% {opacity:0;width:355px;}
}



/* ANIMATE NUMBERING*/

.num-container {
  overflow: hidden;
}
.is-animated {
  font-family: 'Open Sans Condensed', 'sans-serif';
  font-weight: bold;
  padding: 0;
  position: relative;
}
.is-animated span {
  display: block;
  padding: 0 10px;
  width: 50%;
}
.property {
  font-size: 150%;
  text-align: right;
  border-right: 2px solid #000;
  width: 0;
  float: left;
  -webkit-animation-name: expandProperty;
  -webkit-animation-delay: .5s;
  -webkit-animation-duration: .8s;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in;
}
.value {
  font-size: 28px;
}
.value span {
  margin-left: -50%;
  -webkit-animation-name: expandValue;
  -webkit-animation-duration: 2.5s;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in;
}
@-webkit-keyframes expandProperty {
  from {
    width: 0%;
  }
  to {
    width: 2%;
  }
}
@-webkit-keyframes expandValue {
  from {
    margin-left: 5%;
  }
  to {
    margin-left: 10%
  }
}

/* reveal */

.reveal-container {
  padding: 100px 20px 0;
  max-width: 960px;
  margin: 0 auto;
}
.p {
  margin: 0;
  text-align: center;
  font-size: 200px;
  overflow: hidden;
  line-height: 1;
}
.p span {
  display: block;
  animation: reveal 1.5s cubic-bezier(0.77, 0, 0.175, 1) 0.5s;
}

@keyframes reveal {
  0% {
    transform: translate(0,100%);
  }
  100% {
    transform: translate(0,0);
  }
}


