/* ----------------------------------------------
 * Generated by Animista on 2024-10-4 15:54:42
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation text-focus-in
 * ----------------------------------------
 */
@-webkit-keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}
@keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}

.text-focus-in {
  -webkit-animation: text-focus-in 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
  animation: text-focus-in 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}


/* ----------------------------------------------
 * Generated by Animista on 2024-10-4 16:12:13
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation blink-1
 * ----------------------------------------
 */
@-webkit-keyframes blink-boy-1 {
  0%,
  50%,
  100% {
    color: deepskyblue;
  }
  25%,
  75% {
    color: #6d5542;
  }
}
@keyframes blink-boy-1 {
  0%,
  50%,
  100% {
    color: deepskyblue;
  }
  25%,
  75% {
    color: #6d5542;
  }
}

@-webkit-keyframes blink-girl-1 {
  0%,
  50%,
  100% {
    color: hotpink;
  }
  25%,
  75% {
    color: #6d5542;
  }
}
@keyframes blink-girl-1 {
  0%,
  50%,
  100% {
    color: hotpink;
  }
  25%,
  75% {
    color: #6d5542;
  }
}

.blink-boy-1 {
  -webkit-animation: blink-boy-1 0.6s both;
  -webkit-animation-delay: 1.5s;
  animation: blink-boy-1 0.6s both;
  animation-delay: 1.5s;
}

.blink-girl-1 {
  -webkit-animation: blink-girl-1 0.6s both;
  -webkit-animation-delay: 2.3s;
  animation: blink-girl-1 0.6s both;
  animation-delay: 2.3s;
}