/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Mar 11 2026 | 10:09:55 */
/* H1 mit der Klasse 'typewriter-h1' */
.typewriter-h1 {
  position: relative;
  display: inline-block;
  overflow: hidden;

  /* Clamp bleibt */
  /* font-size: clamp(28px, 2.5vw, 34px); */

  letter-spacing: 0.1em;

  /* Animation startet automatisch */
  animation: typeReveal 2.8s steps(30, end) forwards;
}

@keyframes typeReveal {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}
